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
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ dependencyLocking {
lockAllConfigurations()
}

// Keep this up to date with the node installation in release/builder/build.sh
node {
download = false
version = "24.19.0"
Expand Down
5 changes: 3 additions & 2 deletions release/builder/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ apt-get install python3 -y
apt-get install npm -y
npm cache clean -f
npm install -g n
# Retrying because fails are possible for node.js intallation. See
# Retrying because fails are possible for node.js installation. See
# https://github.com/nodejs/build/issues/1993
for i in {1..5}; do n 22.12.0 && break || sleep 15; done
# Keep this version up to date with the node block in the root build.gradle file
for i in {1..5}; do n 24.19.0 && break || sleep 15; done

# Install gp_dump
apt-get install postgresql-client-17 procps -y
Expand Down
Loading