Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions cases/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ function run_sandboxed() {
DOCKER_RUNTIME=runsc
fi

# This image is mirrored and will not be rate limited.
NODE_IMAGE=mcr.microsoft.com/mirror/docker/library/node:20
NODE_IMAGE=mcr.microsoft.com/devcontainers/javascript-node:22

INTERNET=ts-perf-sandbox-internet
NO_INTERNET=ts-perf-sandbox-internal
Expand Down
2 changes: 1 addition & 1 deletion cases/scenarios/angular-1/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ source ../../common.sh

clone_scenario https://github.com/angular/angular.git cc57d4c4998b4e38f940afdf358af37185028072

run_sandboxed sh -c 'yarn install --ignore-scripts'
run_sandboxed sh -c 'yarn install --ignore-scripts --ignore-engines'
2 changes: 1 addition & 1 deletion cases/scenarios/vscode-1/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ source ../../common.sh

clone_scenario https://github.com/microsoft/vscode.git f88bce8fe6a6d2ccd27cbd64bb26853cd8779afa

run_sandboxed sh -c 'yarn install --ignore-scripts'
run_sandboxed sh -c 'yarn install --ignore-scripts --ignore-engines'
2 changes: 1 addition & 1 deletion cases/scenarios/vscode/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ source ../../common.sh

clone_scenario https://github.com/microsoft/vscode.git

run_sandboxed sh -c 'yarn install --ignore-scripts'
run_sandboxed sh -c 'npm ci --ignore-scripts'
2 changes: 1 addition & 1 deletion cases/scenarios/webpack-1/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ clone_scenario https://github.com/webpack/webpack.git 228fc69f40c3e9ec6d99a5105f

run_sandboxed sh -c '
set -ex
yarn install --ignore-scripts
yarn install --ignore-scripts --ignore-engines

# https://github.com/webpack/webpack/blob/228fc69f40c3e9ec6d99a5105fdc85b5bca4ce43/.github/workflows/test.yml#L135
LINK_FOLDER=$PWD/node_modules/.yarn-link
Expand Down
2 changes: 1 addition & 1 deletion cases/scenarios/webpack/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ clone_scenario https://github.com/webpack/webpack.git

run_sandboxed sh -c '
set -ex
yarn install --ignore-scripts
yarn install --ignore-scripts --ignore-engines

# https://github.com/webpack/webpack/blob/228fc69f40c3e9ec6d99a5105fdc85b5bca4ce43/.github/workflows/test.yml#L135
LINK_FOLDER=$PWD/node_modules/.yarn-link
Expand Down