diff options
| author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-04-03 09:24:55 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-03 09:24:55 +1100 |
| commit | 29085895c9e7dc348f393c1154f7890663008612 (patch) | |
| tree | ec06f386ba72d0590d1fb6913c83aca6e16ad97a /.github/workflows | |
| parent | 2b1c6e172e141c47eda65de2dedcac2a8e2abe84 (diff) | |
chore: move `tools/node_compat` to `tests/node_compat/runner` (#23025)
The `tools/node_compat/node` submodule has been moved to
`tests/node_compat/runner/suite` and the remaining files within
`tools/node_compat` to `tests/node_compat/runner`.
Most of the changes are of the header within `tests/node_compat/test`
files. The `setup` and `test` tasks within `tests/node_comapt` execute
successfully.
Towards #22525
CC @mmastrac
Diffstat (limited to '.github/workflows')
| -rwxr-xr-x | .github/workflows/ci.generate.ts | 4 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index c15e508d0..466d30ba4 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -454,7 +454,7 @@ const ci = { if: "matrix.wpt", }, { - ...submoduleStep("./tools/node_compat/node"), + ...submoduleStep("./tests/node_compat/runner/suite"), if: "matrix.job == 'lint' && matrix.os == 'linux'", }, { @@ -653,7 +653,7 @@ const ci = { name: "node_compat/setup.ts --check", if: "matrix.job == 'lint' && matrix.os == 'linux'", run: - "deno run --allow-write --allow-read --allow-run=git ./tools/node_compat/setup.ts --check", + "deno run --allow-write --allow-read --allow-run=git ./tests/node_compat/runner/setup.ts --check", }, { name: "Build debug", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 632d59344..0dfc1654d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -157,8 +157,8 @@ jobs: - name: Clone submodule ./tests/wpt/suite run: git submodule update --init --recursive --depth=1 -- ./tests/wpt/suite if: '!(matrix.skip) && (matrix.wpt)' - - name: Clone submodule ./tools/node_compat/node - run: git submodule update --init --recursive --depth=1 -- ./tools/node_compat/node + - name: Clone submodule ./tests/node_compat/runner/suite + run: git submodule update --init --recursive --depth=1 -- ./tests/node_compat/runner/suite if: '!(matrix.skip) && (matrix.job == ''lint'' && matrix.os == ''linux'')' - name: 'Create source tarballs (release, linux)' if: |- @@ -388,7 +388,7 @@ jobs: run: deno run --unstable --allow-write --allow-read --allow-run --allow-net ./tools/lint.js - name: node_compat/setup.ts --check if: '!(matrix.skip) && (matrix.job == ''lint'' && matrix.os == ''linux'')' - run: deno run --allow-write --allow-read --allow-run=git ./tools/node_compat/setup.ts --check + run: deno run --allow-write --allow-read --allow-run=git ./tests/node_compat/runner/setup.ts --check - name: Build debug if: '!(matrix.skip) && (matrix.job == ''test'' && matrix.profile == ''debug'')' run: |- |
