mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
ci: skip debug WPT during PRs (#12440)
Running Debug WPT takes about 35 minutes. It will be still checked in the release build and on main branch, but too slow to run for PRs. See for example: https://github.com/denoland/deno/pull/12438/checks?check_run_id=3889127272
This commit is contained in:
parent
34418884f4
commit
74364889f0
1 changed files with 3 additions and 2 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -336,7 +336,7 @@ jobs:
|
||||||
(matrix.job == 'test' || matrix.job == 'bench') &&
|
(matrix.job == 'test' || matrix.job == 'bench') &&
|
||||||
matrix.profile == 'debug' && !matrix.use_sysroot
|
matrix.profile == 'debug' && !matrix.use_sysroot
|
||||||
run: cargo build --locked --all-targets
|
run: cargo build --locked --all-targets
|
||||||
|
|
||||||
- name: Build fastci
|
- name: Build fastci
|
||||||
if: (matrix.job == 'test' && matrix.profile == 'fastci')
|
if: (matrix.job == 'test' && matrix.profile == 'fastci')
|
||||||
run: cargo build --locked --all-targets
|
run: cargo build --locked --all-targets
|
||||||
|
@ -455,7 +455,8 @@ jobs:
|
||||||
- name: Run web platform tests (debug)
|
- name: Run web platform tests (debug)
|
||||||
if: |
|
if: |
|
||||||
startsWith(matrix.os, 'ubuntu') && matrix.job == 'test' &&
|
startsWith(matrix.os, 'ubuntu') && matrix.job == 'test' &&
|
||||||
matrix.profile == 'debug'
|
matrix.profile == 'debug' &&
|
||||||
|
github.ref == 'refs/heads/main'
|
||||||
env:
|
env:
|
||||||
DENO_BIN: ./target/debug/deno
|
DENO_BIN: ./target/debug/deno
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue