We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 959f9e6 commit 0726d3cCopy full SHA for 0726d3c
.github/workflows/config.yml
@@ -54,10 +54,22 @@ jobs:
54
55
catkin:
56
runs-on: ubuntu-latest
57
- container: ubuntu:18.04
+ container:
58
+ image: ubuntu:18.04
59
+ volumes:
60
+ - /tmp/node20:/__e/node20
61
timeout-minutes: 60
62
63
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/
73
- name: Checkout
74
uses: actions/checkout@v2
75
- name: Setup Apt
0 commit comments