diff --git a/.ci.cmake b/.ci.cmake index 05468652..4ef582da 100644 --- a/.ci.cmake +++ b/.ci.cmake @@ -204,4 +204,6 @@ endif() ctest_submit() if(NOT retval EQUAL 0 OR NOT retval2 EQUAL 0 OR NOT retval3 EQUAL 0) message(FATAL_ERROR "FATAL: Running tests exited with ${retval} ${retval2} ${retval3}") +else() + message(STATUS "Running tests exited with ${retval} ${retval2} ${retval3}") endif() diff --git a/.github/workflows/installability.yml b/.github/workflows/installability.yml index 0a21de92..9e614ac5 100644 --- a/.github/workflows/installability.yml +++ b/.github/workflows/installability.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-11, windows-2019] + os: [ubuntu-20.04, macos-latest, windows-2019] configuration: [error_code, status_code] env: NAME: Install-${{ matrix.os }}-${{ matrix.configuration }} diff --git a/.github/workflows/programs.yml b/.github/workflows/programs.yml index f8a98382..8b650004 100644 --- a/.github/workflows/programs.yml +++ b/.github/workflows/programs.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-11, windows-2019] + os: [ubuntu-20.04, macos-latest, windows-2019] env: NAME: Programs-${{ matrix.os }} runs-on: ${{ matrix.os }}