Skip to content

Commit

Permalink
ci: added ninja-build tool dependency for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
SNMetamorph committed Oct 30, 2023
1 parent f42e300 commit af8482e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/nightly-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
# We'll use this as our working directory for all subsequent commands
run: cmake -E make_directory ${{github.workspace}}/build

- name: Install ninja-build tool
uses: seanmiddleditch/gha-setup-ninja@v4

- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
Expand All @@ -40,7 +43,7 @@ jobs:
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: cmake $GITHUB_WORKSPACE --preset ${{ matrix.cmake_preset }} -G "Visual Studio 17 2022"
run: cmake $GITHUB_WORKSPACE --preset ${{ matrix.cmake_preset }}

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

0 comments on commit af8482e

Please sign in to comment.