Skip to content

Commit 704395a

Browse files
Add check for basic features not changing
1 parent 8064dfe commit 704395a

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-0
lines changed

.github/workflows/build-quick.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,15 @@ jobs:
5959
echo "::group::Test Plan"
6060
cat plan.csv
6161
echo "::endgroup::"
62+
- name: Check that basic feature tests haven't changed
63+
env:
64+
ZE_ENABLE_NULL_DRIVER: 1
65+
LD_LIBRARY_PATH: ${{ github.workspace }}/level-zero/build/lib
66+
run: | #bash
67+
./scripts/run_test_report.py \
68+
--run_test_features basic \
69+
--binary_dir ./build/out \
70+
--export_test_plan basic_features.csv
71+
git diff --no-index --exit-code \
72+
<(sort basic_features_freeze.csv) \
73+
<(sort basic_features.csv)

0 commit comments

Comments
 (0)