From 4af98fa82f87dedfa6cc4a48231329fbc948836b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 10 Sep 2024 02:10:20 +0100 Subject: build: remove --unstable flags from CI (#25548) This commit removes usages of deprecated `--unstable` flag from the CI scripts. --- .github/workflows/ci.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e8c6248b..1a10f4063 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -389,7 +389,7 @@ jobs: cache-path: ./target - name: test_format.js if: '!(matrix.skip) && (matrix.job == ''lint'' && matrix.os == ''linux'')' - run: deno run --unstable --allow-write --allow-read --allow-run --allow-net ./tools/format.js --check + run: deno run --allow-write --allow-read --allow-run --allow-net ./tools/format.js --check - name: Lint PR title if: '!(matrix.skip) && (matrix.job == ''lint'' && github.event_name == ''pull_request'' && matrix.os == ''linux'')' env: @@ -397,7 +397,7 @@ jobs: run: deno run ./tools/verify_pr_title.js "$PR_TITLE" - name: lint.js if: '!(matrix.skip) && (matrix.job == ''lint'')' - run: deno run --unstable --allow-write --allow-read --allow-run --allow-net ./tools/lint.js + run: deno run --allow-write --allow-read --allow-run --allow-net ./tools/lint.js - name: jsdoc_checker.js if: '!(matrix.skip) && (matrix.job == ''lint'')' run: deno run --allow-read --allow-env --allow-sys ./tools/jsdoc_checker.js @@ -494,7 +494,7 @@ jobs: matrix.job == 'test' && matrix.profile == 'release' && !startsWith(github.ref, 'refs/tags/')) - run: target/release/deno run -A --unstable --config tests/config/deno.json ext/websocket/autobahn/fuzzingclient.js + run: target/release/deno run -A --config tests/config/deno.json ext/websocket/autobahn/fuzzingclient.js - name: 'Test (full, debug)' if: |- !(matrix.skip) && (matrix.job == 'test' && @@ -531,18 +531,18 @@ jobs: env: 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" - name: Run web platform tests (release) if: '!(matrix.skip) && (matrix.wpt && matrix.profile == ''release'')' env: 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 \ @@ -590,8 +590,7 @@ jobs: 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" -- cgit v1.2.3