From fe481037b2c64bca0ddecfd96024f4166e9fcbc4 Mon Sep 17 00:00:00 2001 From: a dinosaur Date: Wed, 28 Jun 2023 20:18:29 +1000 Subject: [PATCH] Enable core profile on CI to see what happens --- .github/workflows/cmake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 15ce30d..10e37b4 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -22,12 +22,12 @@ jobs: - uses: ConorMacBride/install-package@v1 with: - apt: libsdl2-dev + apt: libsdl2-dev python3 - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_OPENGL=ON - name: Build # Build your program with the given configuration