diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-10-24 18:12:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-24 22:12:25 +0000 |
commit | bc53b588d0c0f42da15408968421a10f4c04df25 (patch) | |
tree | ebbb47ce7a02b52bfe0000836f53aa9ee33507df | |
parent | 59a5fe530f92e4207cc30be24158c0a809e37e5b (diff) |
ci: remove "Test examples debug" (#20966)
It's too slow.
-rwxr-xr-x | .github/workflows/ci.generate.ts | 11 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 7 |
2 files changed, 0 insertions, 18 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 3fd8bbebd..f36cee31d 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -729,17 +729,6 @@ const ci = { env: { CARGO_PROFILE_DEV_DEBUG: 0 }, }, { - name: "Test examples debug", - if: "matrix.job == 'test' && matrix.profile == 'debug'", - run: [ - // Only regression tests here for now. - // Regression test for https://github.com/denoland/deno/pull/19615. - "cargo run -p deno_runtime --example extension_with_esm", - "cargo run -p deno_runtime --example extension_with_esm --features include_js_files_for_snapshotting", - ].join("\n"), - env: { CARGO_PROFILE_DEV_DEBUG: 0 }, - }, - { name: "Test release", if: [ "matrix.job == 'test' && matrix.profile == 'release' &&", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 483fa3e79..9146aeb95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -446,13 +446,6 @@ jobs: cargo test --locked --test '*' env: CARGO_PROFILE_DEV_DEBUG: 0 - - name: Test examples debug - if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (matrix.job == ''test'' && matrix.profile == ''debug'')' - run: |- - cargo run -p deno_runtime --example extension_with_esm - cargo run -p deno_runtime --example extension_with_esm --features include_js_files_for_snapshotting - env: - CARGO_PROFILE_DEV_DEBUG: 0 - name: Test release if: |- !(github.event_name == 'pull_request' && matrix.skip_pr) && (matrix.job == 'test' && matrix.profile == 'release' && |