mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
parent
c67c87b2ae
commit
5236fd0dad
3 changed files with 7 additions and 17 deletions
8
.github/workflows/ci.generate.ts
vendored
8
.github/workflows/ci.generate.ts
vendored
|
@ -862,13 +862,9 @@ const ci = {
|
|||
DENO_BIN: "./target/debug/deno",
|
||||
},
|
||||
run: [
|
||||
"deno run --allow-env --allow-net --allow-read --allow-run \\",
|
||||
" --allow-write --unstable \\",
|
||||
" --lock=tools/deno.lock.json \\",
|
||||
"deno run -A --unstable --lock=tools/deno.lock.json \\",
|
||||
" ./tests/wpt/wpt.ts setup",
|
||||
"deno run --allow-env --allow-net --allow-read --allow-run \\",
|
||||
" --allow-write --unstable \\",
|
||||
" --lock=tools/deno.lock.json \\",
|
||||
"deno run -A --unstable --lock=tools/deno.lock.json \\",
|
||||
' ./tests/wpt/wpt.ts run --quiet --binary="$DENO_BIN"',
|
||||
].join("\n"),
|
||||
},
|
||||
|
|
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -526,13 +526,9 @@ jobs:
|
|||
env:
|
||||
DENO_BIN: ./target/debug/deno
|
||||
run: |-
|
||||
deno run --allow-env --allow-net --allow-read --allow-run \
|
||||
--allow-write --unstable \
|
||||
--lock=tools/deno.lock.json \
|
||||
deno run -A --unstable --lock=tools/deno.lock.json \
|
||||
./tests/wpt/wpt.ts setup
|
||||
deno run --allow-env --allow-net --allow-read --allow-run \
|
||||
--allow-write --unstable \
|
||||
--lock=tools/deno.lock.json \
|
||||
deno run -A --unstable --lock=tools/deno.lock.json \
|
||||
./tests/wpt/wpt.ts run --quiet --binary="$DENO_BIN"
|
||||
- name: Run web platform tests (release)
|
||||
if: '!(matrix.skip) && (matrix.wpt && matrix.profile == ''release'')'
|
||||
|
|
8
.github/workflows/wpt_epoch.yml
vendored
8
.github/workflows/wpt_epoch.yml
vendored
|
@ -66,12 +66,10 @@ jobs:
|
|||
- name: Run web platform tests
|
||||
shell: bash
|
||||
run: |
|
||||
deno run --unstable --allow-write --allow-read --allow-net \
|
||||
--allow-env --allow-run --lock=tools/deno.lock.json \
|
||||
deno run --unstable -A --lock=tools/deno.lock.json \
|
||||
./tests/wpt/wpt.ts setup
|
||||
deno run --unstable --allow-write --allow-read --allow-net \
|
||||
--allow-env --allow-run --lock=tools/deno.lock.json \
|
||||
./tests/wpt/wpt.ts run \ \
|
||||
deno run --unstable -A --lock=tools/deno.lock.json \
|
||||
./tests/wpt/wpt.ts run \ \
|
||||
--binary=$(which deno) --quiet --release --no-ignore --json=wpt.json --wptreport=wptreport.json --exit-zero
|
||||
|
||||
- name: Upload wpt results to wpt.fyi
|
||||
|
|
Loading…
Reference in a new issue