File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 74
74
- 'sycl/test-e2e/(ESIMD|InvokeSimd)/**'
75
75
ur:
76
76
- 'unified-runtime/**'
77
+ - .github/workflows/ur-*
77
78
78
79
- name : Set output
79
80
id : result
Original file line number Diff line number Diff line change 94
94
- name : Checkout LLVM
95
95
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
96
96
97
- - name : Install UR python dependencies
97
+ # Latest distros do not allow global pip installation
98
+ - name : Install UR python dependencies in venv
98
99
working-directory : ${{github.workspace}}/unified-runtime
99
- run : pip install -r third_party/requirements.txt
100
+ run : |
101
+ python3 -m venv .venv
102
+ . .venv/bin/activate
103
+ echo "$PATH" >> $GITHUB_PATH
104
+ pip install -r third_party/requirements.txt
100
105
101
106
- name : Download DPC++
102
107
run : |
You can’t perform that action at this time.
0 commit comments