diff --git a/.github/workflows/ubuntu-test.yml b/.github/workflows/ubuntu-test.yml index 55d679d..f5a2972 100644 --- a/.github/workflows/ubuntu-test.yml +++ b/.github/workflows/ubuntu-test.yml @@ -31,4 +31,11 @@ jobs: libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev - name: Configure CMake - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUI_ + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + + - name: Build + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + + #- name: Test + # working-directory: ${{github.workspace}}/build + # run: ctest -C ${{env.BUILD_TYPE}}