You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
23
+
- uses: lukka/get-cmake@latest
24
+
- name: Restore from cache the dependencies and generate project files
25
+
run: |
26
+
cmake --preset ninja-multi-vcpkg
27
+
28
+
- name: Build (Release configuration)
29
+
run: |
30
+
cmake --build --preset ninja-vcpkg-release
31
+
32
+
# Test the whole project with CTest, again Release configuration only.
0 commit comments