From 135e7d24af026ef45a0aab75abebf7108bcf8b73 Mon Sep 17 00:00:00 2001 From: Udit Kumar Agarwal Date: Mon, 27 Jan 2025 08:44:14 -0800 Subject: [PATCH] [CI] Install `pkg-config` in docker container `pkg-config` is required for `llvm-spirv` to detect `spirv-tools` installation. --- devops/scripts/install_build_tools.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devops/scripts/install_build_tools.sh b/devops/scripts/install_build_tools.sh index 55cbc46aad449..a878f2807fd0e 100755 --- a/devops/scripts/install_build_tools.sh +++ b/devops/scripts/install_build_tools.sh @@ -30,7 +30,8 @@ apt update && apt install -yqq \ # To obtain latest release of spriv-tool. # Same as what's done in SPRIV-LLVM-TRANSLATOR: # https://github.com/KhronosGroup/SPIRV-LLVM-Translator/blob/cec12d6cf46306d0a015e883d5adb5a8200df1c0/.github/workflows/check-out-of-tree-build.yml#L59 +# pkg-config is required for llvm-spriv to detect spriv-tools installation. . /etc/os-release curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | apt-key add - echo "deb https://packages.lunarg.com/vulkan $VERSION_CODENAME main" | tee -a /etc/apt/sources.list -apt update && apt install -yqq spirv-tools +apt update && apt install -yqq spirv-tools pkg-config