Browse Source

Disable macOS on CI for now

We are seeing some issues building the library after GitHub updated the macOS image. However, the updated image seems to work well on the `cmake` branch with the CMake changes there. Let's simply wait for that branch to be merged and then we will have macOS support back.
Michael Ragazzon 1 year ago
parent
commit
b21fd693ae
1 changed files with 0 additions and 33 deletions
  1. 0 33
      .github/workflows/build.yml

+ 0 - 33
.github/workflows/build.yml

@@ -98,39 +98,6 @@ jobs:
       run: cmake --build . --config $BUILD_TYPE
 
 
-  macOS:
-    runs-on: macos-latest
-
-    env:
-      BUILD_TYPE: Release
-
-    strategy:
-      fail-fast: false
-      matrix:
-        include:
-          - cmake_options: -DSAMPLES_BACKEND=auto
-          - cmake_options: -DSAMPLES_BACKEND=GLFW_GL2
-
-    steps:
-    - uses: actions/checkout@v3
-
-    - name: Install Dependencies
-      run: brew install lua sdl2 sdl2_image glfw
-
-    - name: Create Build Environment
-      run: cmake -E make_directory ${{github.workspace}}/Build
-
-    - name: Configure CMake
-      working-directory: ${{github.workspace}}/Build
-      run: >-
-        cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_LUA_BINDINGS=ON -DBUILD_SAMPLES=ON -DWARNINGS_AS_ERRORS=ON
-        ${{ matrix.cmake_options }}
-
-    - name: Build
-      working-directory: ${{github.workspace}}/Build
-      run: cmake --build . --config $BUILD_TYPE
-
-
   Windows:
     runs-on: windows-latest