1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-21 23:04:45 -05:00

ci: remove "Test examples debug" (#20966)

It's too slow.
This commit is contained in:
David Sherret 2023-10-24 18:12:25 -04:00 committed by GitHub
parent 59a5fe530f
commit bc53b588d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 18 deletions

View file

@ -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: [

View file

@ -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' &&