Skip to content

Commit

Permalink
try adding a specific GitHub action to build with tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bashbaug committed Oct 25, 2024
1 parent 9118c93 commit 5f0ed13
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,17 @@ jobs:
- name: Check generated headers
run: git diff --exit-code

build_with_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=install -DSPIRV_HEADERS_ENABLE_TESTS ..
cmake --build . --target install
test_cmake_min_required:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 5f0ed13

Please sign in to comment.