Skip to content

Commit 6ec0807

Browse files
Don't use get-cmake for Ubuntu 14.04
1 parent 3293b67 commit 6ec0807

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/build-test.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ jobs:
311311
uses: ilammy/msvc-dev-cmd@v1
312312

313313
- name: build
314+
if: matrix.os != 'ubuntu-14.04'
314315
uses: lukka/[email protected]
315316
with:
316317
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced
@@ -336,6 +337,7 @@ jobs:
336337
ctest --output-on-failure ${{ env.CTEST_EXPECTED_FAILURES }}
337338
338339
- name: install
340+
if: matrix.os != 'ubuntu-14.04'
339341
uses: lukka/[email protected]
340342
with:
341343
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced
@@ -350,7 +352,7 @@ jobs:
350352
echo "CMAKE_WORKSPACE=${RUNNER_WORKSPACE//\\/\/}" >> $GITHUB_ENV
351353
352354
- name: install test
353-
if: runner.os != 'macOS'
355+
if: runner.os != 'macOS' && matrix.os != 'ubuntu-14.04'
354356
uses: lukka/[email protected]
355357
with:
356358
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced
@@ -881,6 +883,7 @@ jobs:
881883
uses: ilammy/msvc-dev-cmd@v1
882884

883885
- name: build
886+
if: matrix.os != 'ubuntu-14.04'
884887
uses: lukka/[email protected]
885888
with:
886889
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced
@@ -906,6 +909,7 @@ jobs:
906909
ctest --output-on-failure ${{ env.CTEST_EXPECTED_FAILURES }}
907910
908911
- name: install
912+
if: matrix.os != 'ubuntu-14.04'
909913
uses: lukka/[email protected]
910914
with:
911915
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced
@@ -920,7 +924,7 @@ jobs:
920924
echo "CMAKE_WORKSPACE=${RUNNER_WORKSPACE//\\/\/}" >> $GITHUB_ENV
921925
922926
- name: install test
923-
if: runner.os != 'macOS'
927+
if: runner.os != 'macOS' && matrix.os != 'ubuntu-14.04'
924928
uses: lukka/[email protected]
925929
with:
926930
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced

.github/workflows/src/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
uses: ilammy/msvc-dev-cmd@v1
44

55
- name: build
6+
if: matrix.os != 'ubuntu-14.04'
67
uses: lukka/[email protected]
78
with:
89
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced

.github/workflows/src/install-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
echo "CMAKE_WORKSPACE=${RUNNER_WORKSPACE//\\/\/}" >> $GITHUB_ENV
66
77
- name: install test
8-
if: runner.os != 'macOS'
8+
if: runner.os != 'macOS' && matrix.os != 'ubuntu-14.04'
99
uses: lukka/[email protected]
1010
with:
1111
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced

.github/workflows/src/install.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
- name: install
2+
if: matrix.os != 'ubuntu-14.04'
23
uses: lukka/[email protected]
34
with:
45
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced

0 commit comments

Comments
 (0)