From 017983f692255d8d3016a65204160688b77d49a7 Mon Sep 17 00:00:00 2001 From: Godzil Date: Mon, 28 Feb 2022 12:31:43 +0000 Subject: [PATCH] Trying to make the google action to work. --- .github/workflows/cmake.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 9d9e746..cc8be00 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -11,13 +11,16 @@ env: jobs: build: - # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. - # You can convert this to a matrix build if you need cross-platform coverage. - # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.allow_failure }} strategy: + fail-fast: false matrix: - os: [ ubuntu-18.04, ubuntu-20.04, ubuntu-latest, macos-latest ] + os: [ ubuntu-18.04, ubuntu-20.04, ubuntu-latest ] + allow_failure: [ false ] + # include: + # - os: macos-latest + # allow_failure: true steps: - uses: actions/checkout@v2 @@ -26,7 +29,6 @@ jobs: - name: Install needed dependencies run: sudo apt install xorg-dev libglu1-mesa-dev - if: ${{ matrix.os }} != "macos-latest" - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}