File tree Expand file tree Collapse file tree 1 file changed +21
-6
lines changed
Expand file tree Collapse file tree 1 file changed +21
-6
lines changed Original file line number Diff line number Diff line change 1212
1313jobs :
1414 self-runner :
15- continue-on-error : true
1615 env :
1716 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
1817 runs-on : [self-hosted, linux, X64]
@@ -21,14 +20,30 @@ jobs:
2120 os : [ubuntu-latest]
2221 julia-version : ['1']
2322 julia-arch : [x64]
23+ env :
24+ ZE_ENABLE_VALIDATION_LAYER : ' 1'
25+ ZE_ENABLE_PARAMETER_VALIDATION : ' 1'
26+ EnableDebugBreak : ' 0'
2427
2528 steps :
2629 - uses : actions/checkout@v4
2730 - uses : julia-actions/setup-julia@latest
2831 with :
2932 version : ${{ matrix.julia-version }}
30- - uses : julia-actions/cache@v2
31- - uses : julia-actions/julia-buildpkg@latest
32- continue-on-error : true
33- - uses : julia-actions/julia-runtest@latest
34- continue-on-error : true
33+ - name : Install debug libraries
34+ run : |
35+ julia --project=deps deps/build_ci.jl
36+ julia --project -e '
37+ # use debug JLLs, for asserts + better backtraces
38+ using oneAPI
39+ oneAPI.set_debug!(true)'
40+ - name : Setup environment
41+ run : |
42+ julia --color=yes --project=./test -e '
43+ using Pkg
44+ Pkg.Registry.update()
45+ Pkg.develop(path=".")
46+ Pkg.instantiate()'
47+ - name : Run tests
48+ run : |
49+ julia --project=test --color=no test/runtests.jl --jobs=8
You can’t perform that action at this time.
0 commit comments