Skip to content

Commit 0726d3c

Browse files
committed
1 parent 959f9e6 commit 0726d3c

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/config.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,22 @@ jobs:
5454
5555
catkin:
5656
runs-on: ubuntu-latest
57-
container: ubuntu:18.04
57+
container:
58+
image: ubuntu:18.04
59+
volumes:
60+
- /tmp/node20:/__e/node20
5861
timeout-minutes: 60
5962

6063
steps:
64+
- name: Try to replace `node` with an glibc 2.17
65+
shell: bash
66+
run: |
67+
ls -lar /__e/node20 &&
68+
apt update && apt-get install -y curl &&
69+
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 &&
70+
cd /__e/node20 &&
71+
tar -x --strip-components=1 -f /tmp/node.tar.gz &&
72+
ls -lar /__e/node20/bin/
6173
- name: Checkout
6274
uses: actions/checkout@v2
6375
- name: Setup Apt

0 commit comments

Comments
 (0)