From: Alex Bennée Date: Tue, 24 Jan 2023 18:00:55 +0000 (+0000) Subject: gitlab: just use plain --cc=clang for custom runner build X-Git-Tag: xenpvh-tag~28^2~33 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c34bf19feb349360faa57147f9bbc16b1f27d6e0;p=users%2Fdwmw2%2Fqemu.git gitlab: just use plain --cc=clang for custom runner build I think this was because older Ubuntu's didn't alias clang to whatever the latest version was. They do now so lets use that and not break. Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Signed-off-by: Alex Bennée Message-Id: <20230124180127.1881110-4-alex.bennee@linaro.org> --- diff --git a/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml b/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml index abeb33eaff..725ca8ffea 100644 --- a/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml +++ b/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml @@ -81,7 +81,7 @@ ubuntu-22.04-aarch64-clang: script: - mkdir build - cd build - - ../configure --disable-libssh --cc=clang-10 --cxx=clang++-10 --enable-sanitizers + - ../configure --disable-libssh --cc=clang --cxx=clang++ --enable-sanitizers || { cat config.log meson-logs/meson-log.txt; exit 1; } - make --output-sync -j`nproc --ignore=40` - make --output-sync -j`nproc --ignore=40` check