Skip to content

Commit 803207c

Browse files
author
Krzysztof Parzyszek
authored
[Hexagon][CI] Update the docker image ID to reflect newer LLVM (#13870)
* [Hexagon][CI] Update the docker image ID to reflect newer LLVM The latest image ID is ci_hexagon:20230127-185848-95fa22308. * Set C/C++ compilers in /opt/sccache to cc/c++
1 parent 76c5186 commit 803207c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ci/jenkins/docker-images.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ci_arm: tlcpack/ci-arm:20221013-060115-61c9742ea
2121
ci_cortexm: tlcpack/ci-cortexm:20230116-133924-dad13d1c1
2222
ci_cpu: tlcpack/ci-cpu:20230110-070003-d00168ffb
2323
ci_gpu: tlcpack/ci-gpu:20221128-070141-ae4fd7df7
24-
ci_hexagon: tlcpack/ci-hexagon:20221013-060115-61c9742ea
24+
ci_hexagon: tlcpack/ci_hexagon:20230127-185848-95fa22308
2525
ci_i386: tlcpack/ci-i386:20221013-060115-61c9742ea
2626
ci_lint: tlcpack/ci-lint:20221013-060115-61c9742ea
2727
ci_minimal: tlcpack/ci-minimal:20230117-070124-125886350

tests/scripts/task_config_build_hexagon.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ echo set\(USE_LLVM "${CLANG_LLVM_HOME}/bin/llvm-config"\) >> config.cmake
3131

3232
if [[ ${CI:-false} == "true" ]]; then
3333
# sccache needs to be used in CI to speed up builds
34-
echo set\(CMAKE_CXX_COMPILER "/opt/sccache/clang++"\) >> config.cmake
34+
echo set\(CMAKE_C_COMPILER "/opt/sccache/cc"\) >> config.cmake
35+
echo set\(CMAKE_CXX_COMPILER "/opt/sccache/c++"\) >> config.cmake
3536
else
3637
echo 'Skipping sccache setup for local build'
37-
echo set\(CMAKE_CXX_COMPILER \"/usr/bin/c++\"\) >> config.cmake
3838
echo set\(CMAKE_C_COMPILER \"/usr/bin/cc\"\) >> config.cmake
39+
echo set\(CMAKE_CXX_COMPILER \"/usr/bin/c++\"\) >> config.cmake
3940
fi
4041

4142
echo set\(USE_HEXAGON "ON"\) >> config.cmake

0 commit comments

Comments
 (0)