Skip to content

Commit

Permalink
Fix runtime-wasm-perf pipeline runs that are failing due to an apt pa…
Browse files Browse the repository at this point in the history
…ckage conflict (#107317)

Fix runtime-wasm-perf pipeline runs that are failing due to a package conflict between node and libnode72:amd64 12.22.9~dfsg-1ubuntu3.6. This is fixed by running sudo apt autoremove -y before installing nodejs to remove the libnode72 package.
  • Loading branch information
LoopedBard3 committed Sep 3, 2024
1 parent 747df88 commit 800ba81
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions eng/pipelines/coreclr/templates/run-performance-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
export NODE_MAJOR=18 &&
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list &&
sudo apt-get update &&
sudo apt autoremove -y &&
sudo apt-get install nodejs -y &&
test -n "$(V8Version)" &&
npm install --prefix $HELIX_WORKITEM_PAYLOAD jsvu -g &&
Expand Down

0 comments on commit 800ba81

Please sign in to comment.