Commit bc2ce4e 1 parent 472c3cd commit bc2ce4e Copy full SHA for bc2ce4e
File tree 3 files changed +15
-5
lines changed
3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ jobs:
126
126
127
127
- name : ' ubuntu-14.04: install cmake'
128
128
if : matrix.os == 'ubuntu-14.04'
129
- uses : ssrobins/install -cmake@v1
129
+ uses : lukka/get -cmake@v3.24.2
130
130
131
131
- name : install cmake
132
132
if : matrix.os != 'ubuntu-14.04'
@@ -667,7 +667,12 @@ jobs:
667
667
curl -sS https://bootstrap.pypa.io/pip/3.6/get-pip.py | python
668
668
curl -sS https://nodejs.org/dist/v12.16.2/node-v12.16.2-linux-x64.tar.xz | tar -xJ
669
669
echo "`pwd`/node-v12.16.2-linux-x64/bin" >> $GITHUB_PATH
670
-
670
+ if [[ {{ matrix.os }} == "ubuntu-14.04"]]; then
671
+ cd $RUNNER_HOME/actions-runner/externals
672
+ mv node20 node20.bak
673
+ ln -s node16 node20
674
+ fi
675
+
671
676
- name : setup google credentials
672
677
if : env.SECRET_GOOGLE_CREDENTIALS
673
678
shell : bash
@@ -684,7 +689,7 @@ jobs:
684
689
685
690
- name : ' ubuntu-14.04: install cmake'
686
691
if : matrix.os == 'ubuntu-14.04'
687
- uses : ssrobins/install -cmake@v1
692
+ uses : lukka/get -cmake@v3.24.2
688
693
689
694
- name : install cmake
690
695
if : matrix.os != 'ubuntu-14.04'
Original file line number Diff line number Diff line change 5
5
6
6
- name : ' ubuntu-14.04: install cmake'
7
7
if : matrix.os == 'ubuntu-14.04'
8
- uses : ssrobins/install -cmake@v1
8
+ uses : lukka/get -cmake@v3.24.2
9
9
10
10
- name : install cmake
11
11
if : matrix.os != 'ubuntu-14.04'
Original file line number Diff line number Diff line change @@ -181,7 +181,12 @@ jobs:
181
181
curl -sS https://bootstrap.pypa.io/pip/3.6/get-pip.py | python
182
182
curl -sS https://nodejs.org/dist/v12.16.2/node-v12.16.2-linux-x64.tar.xz | tar -xJ
183
183
echo "`pwd`/node-v12.16.2-linux-x64/bin" >> $GITHUB_PATH
184
-
184
+ if [[ {{ matrix.os }} == "ubuntu-14.04"]]; then
185
+ cd $RUNNER_HOME/actions-runner/externals
186
+ mv node20 node20.bak
187
+ ln -s node16 node20
188
+ fi
189
+
185
190
@import build-and-test
186
191
187
192
make_badges :
You can’t perform that action at this time.
0 commit comments