Skip to content

Commit bb475b4

Browse files
authored
fix: hoping will fix hangs (#19964)
We are seeing hangs. Node 24 upgrade possible suspect. http://ci.aztec-labs.com/1e04275843527e20
2 parents 8b8e4ca + 8368765 commit bb475b4

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function check_toolchains {
130130
fi
131131
done
132132
# Check Node.js version.
133-
local node_min_version="24.12.0"
133+
local node_min_version="22.15.0"
134134
local node_installed_version=$(node --version | cut -d 'v' -f 2)
135135
if [[ "$(printf '%s\n' "$node_min_version" "$node_installed_version" | sort -V | head -n1)" != "$node_min_version" ]]; then
136136
encourage_dev_container

ci3/aws/ami_id_amd64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ami-067627aa971a1dcbb
1+
ami-09d27244b23be8891

ci3/aws/ami_id_arm64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ami-099a6d94f71a679d0
1+
ami-0e5e48268513912d0

release-image/Dockerfile.base

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ RUN yarn workspaces focus @aztec/aztec --production
1212
# This can be cached and will only update if dependencies change.
1313
FROM ubuntu:noble
1414

15-
ENV NODE_MAJOR=24
15+
ENV NODE_MAJOR=22
16+
ENV NODE_MINOR=15
1617

1718
RUN apt update && apt install -y \
1819
curl \
@@ -26,7 +27,7 @@ RUN apt update && apt install -y \
2627
gnupg && \
2728
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
2829
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && \
29-
apt update && apt install nodejs && \
30+
apt update && apt install nodejs=$NODE_MAJOR.$NODE_MINOR.0-1nodesource1 && \
3031
rm -rf /var/lib/apt/lists/*
3132
# Install anvil.
3233
COPY --from=build /opt/foundry/bin/anvil /opt/foundry/bin/anvil

0 commit comments

Comments
 (0)