summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.github/workflows/ci.generate.ts8
-rw-r--r--.github/workflows/ci.yml8
-rw-r--r--.github/workflows/wpt_epoch.yml8
3 files changed, 7 insertions, 17 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index 755e3a135..37ca73145 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -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"),
},
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 25603027f..7b061adf3 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -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'')'
diff --git a/.github/workflows/wpt_epoch.yml b/.github/workflows/wpt_epoch.yml
index 3155ae42f..4dbb8a997 100644
--- a/.github/workflows/wpt_epoch.yml
+++ b/.github/workflows/wpt_epoch.yml
@@ -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