Skip to content

Commit a123482

Browse files
authored
[CI] Fix Ubuntu 22.04 container (#21128)
Doesn't have gcc-14. Signed-off-by: Nick Sarnie <[email protected]>
1 parent 4e19af5 commit a123482

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

devops/scripts/install_build_tools.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ apt update && apt install -yqq \
2929
linux-tools-generic \
3030
linux-tools-common \
3131
time \
32-
numactl \
33-
gcc-14 \
34-
g++-14
32+
numactl
3533

3634
# To obtain latest release of spriv-tool.
3735
# Same as what's done in SPRIV-LLVM-TRANSLATOR:
@@ -43,5 +41,5 @@ apt update && apt install -yqq pkg-config
4341
if [[ "$VERSION_CODENAME" == "jammy" ]]; then
4442
apt-get install -yqq clang-14 libc++-14-dev
4543
else
46-
apt-get install -yqq clang-18 libc++-18-dev
44+
apt-get install -yqq clang-18 libc++-18-dev gcc-14 g++-14
4745
fi

0 commit comments

Comments
 (0)