-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tentative fix to address node errors, it should not be needed
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|