Skip to content

Commit eaa0b7d

Browse files
[CI] Install libzstd-dev on docker and OSX (intel#15304)
Required for testing intel#15124 (device image compression). I've already installed `zstd` release v1.5.6 on our Windows runners.
1 parent e7935c6 commit eaa0b7d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/sycl-macos-build-and-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
CCACHE_MAXSIZE: ${{ inputs.build_cache_size }}
3131
steps:
3232
- name: Install dependencies
33-
run: brew install ccache ninja hwloc
33+
run: brew install ccache ninja hwloc zstd
3434
- uses: actions/checkout@v4
3535
with:
3636
ref: ${{ inputs.build_ref }}

devops/scripts/install_build_tools.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ apt update && apt install -yqq \
2323
unzip \
2424
jq \
2525
curl \
26-
libhwloc-dev
26+
libhwloc-dev \
27+
libzstd-dev
2728

2829
pip3 install psutil
2930

0 commit comments

Comments
 (0)