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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"dependencies": {
"browser-ui-test": "^0.23.5",
"browser-ui-test": "^0.24.0",
"es-check": "^9.4.4",
"eslint": "^8.57.1",
"typescript": "^5.8.3"
Expand Down
2 changes: 2 additions & 0 deletions src/ci/docker/host-x86_64/pr-check-1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ RUN pip3 install --no-deps --no-cache-dir --require-hashes -r /tmp/reuse-require
COPY host-x86_64/pr-check-1/check-default-config-profiles.sh /scripts/
COPY host-x86_64/pr-check-1/validate-toolstate.sh /scripts/

ENV PUPPETEER_SKIP_DOWNLOAD 1

# Check library crates on all tier 1 targets.
# We disable optimized compiler built-ins because that requires a C toolchain for the target.
# We also skip the x86_64-unknown-linux-gnu target as it is well-tested by other jobs.
Expand Down
2 changes: 2 additions & 0 deletions src/ci/docker/host-x86_64/tidy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
mingw-w64 \
&& rm -rf /var/lib/apt/lists/*

ENV PUPPETEER_SKIP_DOWNLOAD 1

COPY scripts/nodejs.sh /scripts/
RUN sh /scripts/nodejs.sh /node
ENV PATH="/node/bin:${PATH}"
Expand Down
11 changes: 11 additions & 0 deletions src/ci/docker/host-x86_64/x86_64-gnu-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
lsb-release \
xdg-utils \
wget \
unzip \
# libgccjit dependencies
flex \
libmpfr-dev \
Expand All @@ -72,6 +73,16 @@ ENV GCC_EXEC_PREFIX="/usr/lib/gcc/"

COPY host-x86_64/x86_64-gnu-tools/checktools.sh /tmp/

# The version used by current `browser-ui-test` version. To be removed once `yarn` can download
# it without failing...
RUN curl https://ci-mirrors.rust-lang.org/rustc/chrome-linux64.zip > chrome-linux64.zip
RUN unzip -d /usr/bin/ chrome-linux64.zip && rm chrome-linux64.zip

# We already downloaded chromium so no need to download it again.
ENV PUPPETEER_SKIP_DOWNLOAD 1
# We provide the path to the extracted chrome binary.
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chrome-linux64/chrome

COPY scripts/nodejs.sh /scripts/
RUN sh /scripts/nodejs.sh /node
ENV PATH="/node/bin:${PATH}"
Expand Down
2 changes: 1 addition & 1 deletion src/ci/docker/scripts/nodejs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -ex

NODEJS_VERSION=v20.12.2
NODEJS_VERSION=v24.15.0
YARN_VERSION=1.22.22
INSTALL_PATH=${1:-/node}

Expand Down
Loading
Loading