From 0f57473ea988ef40c1544ed8e46de2171c01f275 Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Sat, 5 Oct 2024 12:52:23 -0700 Subject: [PATCH] Remove node install from GHA Tentative fix to address node errors, it should not be needed --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 27f0e00..077d3af 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 python@3.11 redis + brew install libevent msgpack-c curl python@3.11 redis brew link --overwrite python@3.11 pip3 install --upgrade pip