We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8064dfe commit 704395aCopy full SHA for 704395a
.github/workflows/build-quick.yml
@@ -59,3 +59,15 @@ jobs:
59
echo "::group::Test Plan"
60
cat plan.csv
61
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