From 47c6ff48f2c954bf458398708dd09ac8dfe39677 Mon Sep 17 00:00:00 2001 From: Brandon Kite Date: Tue, 24 Oct 2023 22:15:08 -0700 Subject: [PATCH] Add timeout to E2E test (#1447) prevent e2e jobs from running for more than 4 minutes --- .github/workflows/e2e-test-beta4-dev.yml | 1 + CHANGELOG.md | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/e2e-test-beta4-dev.yml b/.github/workflows/e2e-test-beta4-dev.yml index 739d0ed4d51..41687565d9c 100644 --- a/.github/workflows/e2e-test-beta4-dev.yml +++ b/.github/workflows/e2e-test-beta4-dev.yml @@ -7,6 +7,7 @@ on: jobs: e2e_test: runs-on: ubuntu-latest + timeout-minutes: 4 steps: - uses: actions/checkout@v3 - name: Setup e2e config secrets diff --git a/CHANGELOG.md b/CHANGELOG.md index ad281f3d009..d96dfb83c56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ Description of the upcoming release here. ### Added +- [#1447](https://github.com/FuelLabs/fuel-core/pull/1447): Add timeout for continuous e2e tests - [#1444](https://github.com/FuelLabs/fuel-core/pull/1444): Add "sanity" benchmarks for memory opcodes. - [#1437](https://github.com/FuelLabs/fuel-core/pull/1437): Add some transaction throughput tests for basic transfers. - [#1436](https://github.com/FuelLabs/fuel-core/pull/1436): Add a github action to continuously test beta-4.