Skip to content

Commit 9899de0

Browse files
authored
Remove cargo-run-e2e-test-evm job from CI (#7349)
## Description This PR removes the `cargo-run-e2e-test-evm` from the CI. We currently do not support EVM and running the tests only slows the CI down by re-running the tests that are not EVM dependent like, e.g., language tests that fail compiling programs, or snapshot tests that anyhow do not run with the EVM target. All those tests are already tested for FuelVM in both `debug` and `release` mode. ## Checklist - [ ] I have linked to any relevant issues. - [ ] I have commented my code, particularly in hard-to-understand areas. - [ ] I have updated the documentation where relevant (API docs, the reference, and the Sway book). - [ ] If my change requires substantial documentation changes, I have [requested support from the DevRel team](https://github.com/FuelLabs/devrel-requests/issues/new/choose) - [ ] I have added tests that prove my fix is effective or that my feature works. - [ ] I have added (or requested a maintainer to add) the necessary `Breaking*` or `New Feature` labels where relevant. - [x] I have done my best to ensure that my PR adheres to [the Fuel Labs Code Review Standards](https://github.com/FuelLabs/rfcs/blob/master/text/code-standards/external-contributors.md). - [x] I have requested a review from the relevant team or maintainers.
1 parent a347631 commit 9899de0

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
- build-forc-test-project
3636
- cargo-build-workspace
3737
- cargo-clippy
38-
- cargo-run-e2e-test-evm
3938
- cargo-test-lib-std
4039
- forc-run-benchmarks
4140
- forc-unit-tests
@@ -441,21 +440,6 @@ jobs:
441440
sleep 5 &&
442441
cargo run --locked --release --bin test -- --locked --release
443442
444-
cargo-run-e2e-test-evm:
445-
runs-on: buildjet-4vcpu-ubuntu-2204
446-
steps:
447-
- uses: actions/checkout@v3
448-
- name: Install toolchain
449-
uses: dtolnay/rust-toolchain@master
450-
with:
451-
toolchain: ${{ env.RUST_VERSION }}
452-
targets: "x86_64-unknown-linux-gnu, wasm32-unknown-unknown"
453-
- uses: Swatinem/rust-cache@v2
454-
with:
455-
cache-provider: "buildjet"
456-
- name: Cargo Run E2E Tests (EVM)
457-
run: cargo run --locked --release --bin test -- --target evm --locked --no-experimental new_encoding
458-
459443
# TODO: Remove this upon merging std tests with the rest of the E2E tests.
460444
cargo-test-lib-std:
461445
runs-on: buildjet-8vcpu-ubuntu-2204
@@ -779,7 +763,6 @@ jobs:
779763
cargo-clippy,
780764
cargo-fmt-check,
781765
cargo-run-e2e-test,
782-
cargo-run-e2e-test-evm,
783766
cargo-test-lib-std,
784767
cargo-test-workspace,
785768
cargo-test-sway-lsp,
@@ -843,7 +826,6 @@ jobs:
843826
cargo-clippy,
844827
cargo-fmt-check,
845828
cargo-run-e2e-test,
846-
cargo-run-e2e-test-evm,
847829
cargo-test-lib-std,
848830
cargo-test-workspace,
849831
cargo-test-sway-lsp,

0 commit comments

Comments
 (0)