diff options
-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' && |