diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-09-10 02:10:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-10 03:10:20 +0200 |
commit | 4af98fa82f87dedfa6cc4a48231329fbc948836b (patch) | |
tree | 105ecacd528579778bbd44691c749623f19840f6 /.github/workflows/ci.generate.ts | |
parent | 41ba7cdadeac37ced111737987994866efeb0e1b (diff) |
build: remove --unstable flags from CI (#25548)
This commit removes usages of deprecated `--unstable` flag
from the CI scripts.
Diffstat (limited to '.github/workflows/ci.generate.ts')
-rwxr-xr-x | .github/workflows/ci.generate.ts | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 02fd070d4..8cc57619b 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -649,7 +649,7 @@ const ci = { name: "test_format.js", if: "matrix.job == 'lint' && matrix.os == 'linux'", run: - "deno run --unstable --allow-write --allow-read --allow-run --allow-net ./tools/format.js --check", + "deno run --allow-write --allow-read --allow-run --allow-net ./tools/format.js --check", }, { name: "Lint PR title", @@ -664,7 +664,7 @@ const ci = { name: "lint.js", if: "matrix.job == 'lint'", run: - "deno run --unstable --allow-write --allow-read --allow-run --allow-net ./tools/lint.js", + "deno run --allow-write --allow-read --allow-run --allow-net ./tools/lint.js", }, { name: "jsdoc_checker.js", @@ -826,7 +826,7 @@ const ci = { "!startsWith(github.ref, 'refs/tags/')", ].join("\n"), run: - "target/release/deno run -A --unstable --config tests/config/deno.json ext/websocket/autobahn/fuzzingclient.js", + "target/release/deno run -A --config tests/config/deno.json ext/websocket/autobahn/fuzzingclient.js", }, { name: "Test (full, debug)", @@ -879,9 +879,9 @@ const ci = { DENO_BIN: "./target/debug/deno", }, run: [ - "deno run -A --unstable --lock=tools/deno.lock.json --config tests/config/deno.json\\", + "deno run -A --lock=tools/deno.lock.json --config tests/config/deno.json\\", " ./tests/wpt/wpt.ts setup", - "deno run -A --unstable --lock=tools/deno.lock.json --config tests/config/deno.json\\", + "deno run -A --lock=tools/deno.lock.json --config tests/config/deno.json\\", ' ./tests/wpt/wpt.ts run --quiet --binary="$DENO_BIN"', ].join("\n"), }, @@ -892,9 +892,9 @@ const ci = { DENO_BIN: "./target/release/deno", }, run: [ - "deno run -A --unstable --lock=tools/deno.lock.json --config tests/config/deno.json\\", + "deno run -A --lock=tools/deno.lock.json --config tests/config/deno.json\\", " ./tests/wpt/wpt.ts setup", - "deno run -A --unstable --lock=tools/deno.lock.json --config tests/config/deno.json\\", + "deno run -A --lock=tools/deno.lock.json --config tests/config/deno.json\\", " ./tests/wpt/wpt.ts run --quiet --release \\", ' --binary="$DENO_BIN" \\', " --json=wpt.json \\", @@ -958,8 +958,7 @@ const ci = { "git clone --depth 1 --branch gh-pages \\", " https://${DENOBOT_PAT}@github.com/denoland/benchmark_data.git \\", " gh-pages", - "./target/release/deno run --allow-all --unstable \\", - " ./tools/build_benchmark_jsons.js --release", + "./target/release/deno run --allow-all ./tools/build_benchmark_jsons.js --release", "cd gh-pages", 'git config user.email "propelml@gmail.com"', 'git config user.name "denobot"', |