Skip to content

Commit

Permalink
Add check-report-utils to build-quick.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lisanna-dettwyler committed Jun 6, 2024
1 parent 77a3190 commit 8680c12
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/build-quick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,23 @@ jobs:
-D CMAKE_CXX_COMPILER_LAUNCHER=ccache \
-D CMAKE_BUILD_TYPE=Release \
..
make -j$(nproc)
make -j$(nproc) install
- uses: actions/upload-artifact@v4
with:
name: tests
path: ./build/out

# Validates that all tests have assigned features in ./scripts/level_zero_report_utils.py
check-report-utils:
if: github.repository_owner == 'oneapi-src'
runs-on: [ubuntu-latest]
needs: [build-linux]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: tests
- run: | #bash
./scripts/run_test_report.py \
--binary_dir ./build/out \
--export_test_plan plan.csv

0 comments on commit 8680c12

Please sign in to comment.