Browse Source

fix: setup Ninja before CMake configuration

master
Abheek Dhawan 2 years ago
parent
commit
0e4847026d
Signed by: abheekd GPG Key ID: 7BE81B8C14475B67
  1. 6
      .github/workflows/release.yml

6
.github/workflows/release.yml

@ -18,6 +18,9 @@ jobs:
with:
submodules: true
- name: Setup Ninja
uses: ashutoshvarma/setup-ninja@v1.1
- name: Configure CMake
run: cmake -G "Ninja" -B build
@ -38,6 +41,9 @@ jobs:
with:
submodules: true
- name: Setup Ninja
uses: ashutoshvarma/setup-ninja@v1.1
- name: Configure CMake
#run: cmake -G "Visual Studio 17 2022" -B build
run: cmake -G "Ninja" -B build

Loading…
Cancel
Save