Skip to content

Commit 5178e4c

Browse files
committed
test: Add new checkers for pyzes
Related-To: NEO-18718 Signed-off-by: shubham kumar <shubham.kumar@intel.com>
1 parent 8f924ee commit 5178e4c

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/bindings-sysman-python-checks.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,21 @@ jobs:
4444
with:
4545
python-version: ${{ env.PYTHON_VERSION }}
4646

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+
run: |
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+
4762
- name: Create virtual environment and install
4863
run: |
4964
python -m venv .venv

0 commit comments

Comments
 (0)