Skip to content

Commit 566f514

Browse files
[CI] Install pkg-config in docker container (intel#16797)
`pkg-config` is required for `llvm-spirv` to detect `spirv-tools` installation. See intel#16743 (comment) for more info.
1 parent 367f355 commit 566f514

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

devops/scripts/install_build_tools.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ apt update && apt install -yqq \
3030
# To obtain latest release of spriv-tool.
3131
# Same as what's done in SPRIV-LLVM-TRANSLATOR:
3232
# https://github.com/KhronosGroup/SPIRV-LLVM-Translator/blob/cec12d6cf46306d0a015e883d5adb5a8200df1c0/.github/workflows/check-out-of-tree-build.yml#L59
33+
# pkg-config is required for llvm-spriv to detect spriv-tools installation.
3334
. /etc/os-release
3435
curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | apt-key add -
3536
echo "deb https://packages.lunarg.com/vulkan $VERSION_CODENAME main" | tee -a /etc/apt/sources.list
36-
apt update && apt install -yqq spirv-tools
37+
apt update && apt install -yqq spirv-tools pkg-config

0 commit comments

Comments
 (0)