Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ jobs:
-D BUILD_WERROR=ON `
-D BUILD_TESTS=ON `
-G Ninja
- run: cmake --build build/
- run: cmake --build build/ --parallel 1
- run: ctest --parallel --output-on-failure --test-dir build/
- run: cmake --install build --prefix build/install

Expand Down Expand Up @@ -456,7 +456,7 @@ jobs:
env:
# Prevents regression of KhronosGroup/Vulkan-Loader/issues/1332
LDFLAGS: -Wl,-fatal_warnings
- run: cmake --build build
- run: cmake --build build --parallel 1
- run: cmake --install build --prefix /tmp
- run: ctest --parallel --output-on-failure --test-dir build/

Expand Down Expand Up @@ -490,7 +490,7 @@ jobs:
-G Ninja
env:
LDFLAGS: -Wl,-fatal_warnings
- run: cmake --build build
- run: cmake --build build --parallel 1
- run: cmake --install build --prefix /tmp
- name: Verify Universal Binary
run: |
Expand Down Expand Up @@ -530,7 +530,7 @@ jobs:
-G Ninja
env:
LDFLAGS: -Wl,-fatal_warnings
- run: cmake --build build --config Release
- run: cmake --build build --config Release --parallel 1
- run: ctest --parallel --output-on-failure --build-config Release -E UnknownFunction --test-dir build/
- run: cmake --install build --config Release --prefix /tmp
- name: Verify Universal Binary
Expand Down
Loading