Skip to content

Commit

Permalink
Remove node install from GHA
Browse files Browse the repository at this point in the history
Tentative fix to address node errors, it should not be needed
  • Loading branch information
nicolasff committed Oct 5, 2024
1 parent 55d3654 commit 0f57473
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
run: |
apt-get -y update
DEBIAN_FRONTEND=noninteractive apt-get -y --allow-unauthenticated --allow-downgrades --allow-remove-essential --allow-change-held-packages \
install make gcc libevent-dev libmsgpack-dev curl uuid nodejs python3 python3-pip
install make gcc libevent-dev libmsgpack-dev curl uuid python3 python3-pip
# (using `rm` + `ln` since using `alternatives` doesn't work on both UBI 8 and UBI 9)
- name: Install dependencies (Red Hat)
if: contains(matrix.os_name, 'redhat-')
run: |
yum install -y --allowerasing make cmake gcc gcc-c++ libevent-devel git curl uuid nodejs python3.11 python3.11-pip
yum install -y --allowerasing make cmake gcc gcc-c++ libevent-devel git curl uuid python3.11 python3.11-pip
rm -f /usr/bin/python3 /usr/bin/pip3
ln -s $(which python3.11) /usr/bin/python3
ln -s $(which pip3.11) /usr/bin/pip3
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:

- name: Install dependencies
run: |
brew install libevent msgpack-c curl node [email protected] redis
brew install libevent msgpack-c curl [email protected] redis
brew link --overwrite [email protected]
pip3 install --upgrade pip
Expand Down

0 comments on commit 0f57473

Please sign in to comment.