Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Dec 14, 2024
1 parent 959f9e6 commit 4bd5550
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,27 @@ jobs:
catkin:
runs-on: ubuntu-latest
container: ubuntu:18.04
container:
image: ubuntu:18.04
volumes:
- /tmp/node20:/__e/node20
timeout-minutes: 60

steps:
- name: Try to replace `node` with an glibc 2.17
shell: bash
run: |
if [ "${{ matrix.CONTAINER }}" = "jskrobotics/ros-ubuntu:14.04" ]; then
export USER=$(whoami)
sudo chmod 777 -R /__e/node20
sudo chown -R $USER /__e/node20
fi
ls -lar /__e/node20 &&
sudo apt-get install -y curl &&
curl -Lo /tmp/node.tar.gz https://unofficial-builds.nodejs.org/download/release/v20.17.0/node-v20.17.0-linux-x64-glibc-217.tar.gz &&
cd /__e/node20 &&
tar -x --strip-components=1 -f /tmp/node.tar.gz &&
ls -lar /__e/node20/bin/
- name: Checkout
uses: actions/checkout@v2
- name: Setup Apt
Expand Down

0 comments on commit 4bd5550

Please sign in to comment.