From 6d3238d67c2873a6ea0f795efb98db081c12042c Mon Sep 17 00:00:00 2001 From: Vertexwahn Date: Sun, 19 Jan 2025 16:37:34 +0100 Subject: [PATCH] Project import generated by Copybara. GitOrigin-RevId: 2542815a548dcb2aee87de6e7445f63554698722 --- azure-pipelines.yml | 6 +- devertexwahn/ci/ubuntu-24.04-clang19.yaml | 80 ----------------------- 2 files changed, 3 insertions(+), 83 deletions(-) delete mode 100644 devertexwahn/ci/ubuntu-24.04-clang19.yaml diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ebcc1cec..7ec4f07e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -45,11 +45,11 @@ jobs: - template: devertexwahn/ci/ubuntu-24.04-bazel-query.yaml - job: Ubuntu22Clang19 - displayName: "Clang19 on Ubuntu 24.04" + displayName: "Clang19 on Ubuntu 22.04" pool: - vmImage: 'ubuntu-24.04' + vmImage: 'ubuntu-22.04' steps: - - template: devertexwahn/ci/ubuntu-24.04-clang19.yaml + - template: devertexwahn/ci/ubuntu-22.04-clang19.yaml - job: Ubuntu24Coverage displayName: "Coverage with LCOV/GCC13 on Ubuntu 24.04" diff --git a/devertexwahn/ci/ubuntu-24.04-clang19.yaml b/devertexwahn/ci/ubuntu-24.04-clang19.yaml deleted file mode 100644 index 0556063c..00000000 --- a/devertexwahn/ci/ubuntu-24.04-clang19.yaml +++ /dev/null @@ -1,80 +0,0 @@ -# -# SPDX-FileCopyrightText: Copyright 2022-2025 Julian Amann -# SPDX-License-Identifier: Apache-2.0 -# - -# Clang 19 on Ubuntu 24.04 -# Make sure we can build with Clang 16 in all different compilation modes - -steps: - - script: | - df - displayName: "Show disk space" - - - checkout: self - clean: true - fetchDepth: 1 - lfs: false - submodules: false - - - - - script: | - lsb_release -a - displayName: "Show OS version" - - - script: | - df - displayName: "Show disk space" - - - script: | - cd devertexwahn - bazel version - displayName: "Show Bazel version" - - - script: | - sudo apt-get update - sudo apt-get -y install libncurses6 # needed by Clang - displayName: "Install libncurses6" - - - - script: | - cd devertexwahn - bazel run --config=clang19 --compilation_mode=dbg -- //tools/compiler_feature_dump - displayName: "Compiler feature dump" - - # fastbuild - - script: | - cd devertexwahn - bazel build --config=clang19 -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/... - displayName: 'Bazel build clang14-fastbuild' - - - script: | - cd devertexwahn - bazel test --config=clang19 -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/... - displayName: 'Bazel test clang14-fastbuild' - - # dbg - - script: | - cd devertexwahn - bazel build --config=clang19 --compilation_mode=dbg -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/... - displayName: 'Bazel build clang14-dbg' - - - script: | - cd devertexwahn - bazel test --config=clang19 --compilation_mode=dbg -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/... - displayName: 'Bazel test clang14-dbg' - - - script: | - cd devertexwahn - bazel build --config=clang19 --compilation_mode=opt -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/... - displayName: 'Bazel build clang14-opt' - - - script: | - cd devertexwahn - bazel test --config=clang19 --compilation_mode=opt -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/... - displayName: 'Bazel test clang14-opt' - - - script: | - df - displayName: "Show disk space"