File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -317,15 +317,24 @@ jobs:
317
317
PATH : " /opt/python/cp311-cp311/bin:/opt/rh/devtoolset-10/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/github/home/.cargo/bin:/opt/mssql-tools/bin"
318
318
319
319
steps :
320
+ # Setup
321
+
322
+ # actions/checkout and ukka/get-cmake use node, node uses GLIBC, GLIBC is very old on manylinux... things are off to a bad start.
323
+ # But if we can get node working, things should be okay.
324
+ - name : " setup: node"
325
+ run : |
326
+ curl https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
327
+ source ~/.bashrc
328
+ nvm install 16 && nvm use 16
329
+ node -e "console.log('Running Node.js ' + process.version)"
330
+
320
331
- uses : actions/checkout@v3
321
332
with :
322
333
submodules : recursive
323
334
324
- #
325
- # setup
326
- #
335
+
327
336
- name : " setup: cmake & ninja"
328
- uses : lukka/get-cmake@v3.25.2 # workaround for node 20 issue
337
+ uses : lukka/get-cmake@v3.25.2
329
338
with :
330
339
cmakeVersion : " ${{ env.CMAKE_VERSION }}"
331
340
You can’t perform that action at this time.
0 commit comments