diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 3fd8bbebd6..f36cee31d3 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -728,17 +728,6 @@ const ci = { ].join("\n"), 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: [ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 483fa3e794..9146aeb95e 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' &&