Skip to content

Commit

Permalink
Merge pull request #5 from jwinarske/jw/codeql
Browse files Browse the repository at this point in the history
CI Parallel Build
  • Loading branch information
jwinarske authored Nov 9, 2024
2 parents 74db7d2 + 6bf8c19 commit 38a0e97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install Packages
run: |
echo ${{ github.server_url }}
sudo apt-get -y install \
sudo apt-get -y install ninja-build \
libwayland-dev wayland-protocols libxkbcommon-dev \
mesa-common-dev libegl1-mesa-dev libgles2-mesa-dev mesa-utils
cmake --version
Expand All @@ -33,11 +33,11 @@ jobs:
- 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 -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
run: ninja -C ${{github.workspace}}/build

- name: Test
working-directory: ${{github.workspace}}/build
Expand Down

0 comments on commit 38a0e97

Please sign in to comment.