76
76
UR_LOG_LEVEL_ZERO : " level:error;flush:error"
77
77
UR_LOG_NATIVE_CPU : " level:error;flush:error"
78
78
UR_LOG_OPENCL : " level:error;flush:error"
79
- CURRENT_DIR : $(pwd)
80
79
81
80
jobs :
82
81
adapter_build_hw :
@@ -113,9 +112,10 @@ jobs:
113
112
- name : Checkout LLVM
114
113
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
115
114
115
+ # Need to specify python 3.10 for ubuntu 24.04 image because it has python 3.12 by default, but only in 3.10 venv is installed.
116
116
- name : Set up Python 3.10
117
117
if : ${{ inputs.docker_image == 'ghcr.io/intel/llvm/ubuntu2404_intel_drivers:alldeps' }}
118
- uses : actions/setup-python@v5
118
+ uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
119
119
with :
120
120
python-version : ' 3.10'
121
121
@@ -124,7 +124,7 @@ jobs:
124
124
run : |
125
125
python3 -m venv .venv
126
126
. .venv/bin/activate
127
- echo "${PWD}/.venv/bin " >> $GITHUB_PATH
127
+ echo "$PATH " >> $GITHUB_PATH
128
128
pip install -r third_party/requirements.txt
129
129
pip install -r third_party/requirements_testing.txt
130
130
@@ -178,16 +178,16 @@ jobs:
178
178
env :
179
179
ZE_ENABLE_LOADER_DEBUG_TRACE : 1
180
180
ZE_DEBUG : 1
181
- run : ctest -C ${{matrix.build_type}} --test-dir build --output-on-failure -L "adapter-specific" -E "memcheck" --timeout 600
181
+ run : ctest -C ${{matrix.build_type}} --test-dir build --output-on-failure -L "adapter-specific" -E "memcheck" --timeout 600 -VV
182
182
# Don't run adapter specific tests when building multiple adapters
183
183
if : ${{ matrix.adapter.other_name == '' }}
184
184
185
185
- name : Test adapters
186
186
env :
187
187
ZE_ENABLE_LOADER_DEBUG_TRACE : 1
188
188
ZE_DEBUG : 1
189
- run : env UR_CTS_ADAPTER_PLATFORM="${{matrix.adapter.platform}}" ctest -C ${{matrix.build_type}} --test-dir build --output-on-failure -L "conformance" --timeout 600
189
+ run : env UR_CTS_ADAPTER_PLATFORM="${{matrix.adapter.platform}}" ctest -C ${{matrix.build_type}} --test-dir build --output-on-failure -L "conformance" --timeout 600 -VV
190
190
191
191
- name : Get information about platform
192
192
if : ${{ always() }}
193
- run : ./unified-runtime/.github/scripts/get_system_info.sh
193
+ run : ./unified-runtime/.github/scripts/get_system_info.sh
0 commit comments