Skip to content

Commit bb4a1fc

Browse files
committed
Fix use of unsupported mac os CI runners in installability and programs.
1 parent 9358c2d commit bb4a1fc

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.ci.cmake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,4 +204,6 @@ endif()
204204
ctest_submit()
205205
if(NOT retval EQUAL 0 OR NOT retval2 EQUAL 0 OR NOT retval3 EQUAL 0)
206206
message(FATAL_ERROR "FATAL: Running tests exited with ${retval} ${retval2} ${retval3}")
207+
else()
208+
message(STATUS "Running tests exited with ${retval} ${retval2} ${retval3}")
207209
endif()

.github/workflows/installability.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-20.04, macos-11, windows-2019]
18+
os: [ubuntu-20.04, macos-latest, windows-2019]
1919
configuration: [error_code, status_code]
2020
env:
2121
NAME: Install-${{ matrix.os }}-${{ matrix.configuration }}

.github/workflows/programs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-20.04, macos-11, windows-2019]
18+
os: [ubuntu-20.04, macos-latest, windows-2019]
1919
env:
2020
NAME: Programs-${{ matrix.os }}
2121
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)