-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update-imagebitmap
- Loading branch information
Showing
1,399 changed files
with
34,521 additions
and
15,549 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 "[email protected]"', | ||
'git config user.name "denobot"', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -389,15 +389,15 @@ 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: | ||
PR_TITLE: '${{ github.event.pull_request.title }}' | ||
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 "[email protected]" | ||
git config user.name "denobot" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.