aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml11
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5503e578..5a1e6304 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -60,6 +60,9 @@ jobs:
- name: Build the tools
run: make -C build
+ - name: Verify generated source files
+ run: python scripts/generate_source.py --verify external/Vulkan-Headers/registry
+
windows:
runs-on: ${{matrix.os}}
@@ -85,6 +88,9 @@ jobs:
- name: Build the tools
run: cmake --build ./build --config ${{matrix.config}}
+ - name: Verify generated source files
+ run: python scripts/generate_source.py --verify external/Vulkan-Headers/registry
+
mac:
runs-on: macos-latest
@@ -107,6 +113,9 @@ jobs:
- name: Build the tools
run: make -C build
+ - name: Verify generated source files
+ run: python scripts/generate_source.py --verify external/Vulkan-Headers/registry
+
gn:
runs-on: ubuntu-18.04
@@ -133,4 +142,4 @@ jobs:
if: matrix.config == 'Release'
- name: Build the tools
- run: ninja -C out/${{matrix.config}} \ No newline at end of file
+ run: ninja -C out/${{matrix.config}}