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 8f924ee commit 5178e4cCopy full SHA for 5178e4c
1 file changed
.github/workflows/bindings-sysman-python-checks.yml
@@ -44,6 +44,21 @@ jobs:
44
with:
45
python-version: ${{ env.PYTHON_VERSION }}
46
47
+ - name: Install dependencies for Level-Zero loader build
48
+ run: |
49
+ sudo apt-get update
50
+ sudo apt-get install -y cmake build-essential
51
+
52
+ - name: Build and install Level-Zero loader
53
+ working-directory: ${{ github.workspace }}
54
55
+ mkdir -p build
56
+ cd build
57
+ cmake .. -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr
58
+ cmake --build . --parallel $(nproc)
59
+ sudo cmake --build . --target install
60
+ sudo ldconfig
61
62
- name: Create virtual environment and install
63
run: |
64
python -m venv .venv
0 commit comments