From 3de4baa84c1787076224ea209b308f5326c5e50d Mon Sep 17 00:00:00 2001 From: Vertexwahn Date: Mon, 22 Apr 2024 22:43:27 +0200 Subject: [PATCH] Add gcc11 part2 CI job GitOrigin-RevId: 6161386c16b3ef808aaf3b70f533ed522730c9b3 --- .../ci/ubuntu-22.04-gcc11-dbg-part2.yaml | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 devertexwahn/ci/ubuntu-22.04-gcc11-dbg-part2.yaml diff --git a/devertexwahn/ci/ubuntu-22.04-gcc11-dbg-part2.yaml b/devertexwahn/ci/ubuntu-22.04-gcc11-dbg-part2.yaml new file mode 100644 index 00000000..68fd23c6 --- /dev/null +++ b/devertexwahn/ci/ubuntu-22.04-gcc11-dbg-part2.yaml @@ -0,0 +1,64 @@ +# +# SPDX-FileCopyrightText: Copyright 2022-2023 Julian Amann +# SPDX-License-Identifier: Apache-2.0 +# + +# GCC 11 on Ubuntu 22.04 +# Make sure we can build with GCC9 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: | + gcc --version + displayName: "Show GCC version" + + + - script: | + cd devertexwahn + bazel run --config=gcc11 --compilation_mode=dbg -- //tools/compiler_information + displayName: "Show compiler information" + + - script: | + df + displayName: 'Show disk space' + + - script: | + cd devertexwahn + bazel build --config=gcc11 --compilation_mode=dbg -- //okapi/... + displayName: "Bazel build gcc11-dbg (part 2)" + + - script: | + df + displayName: 'Show disk space' + + - script: | + cd devertexwahn + bazel test --config=gcc11 --compilation_mode=dbg -- //okapi/... + displayName: "Bazel test gcc11-dbg (part 2)" + + - script: | + df + displayName: 'Show disk space'