From 6dfd56af08d15600e67f0db043c1f25fb8700d5e Mon Sep 17 00:00:00 2001 From: Vertexwahn Date: Sun, 19 Jan 2025 00:04:44 +0100 Subject: [PATCH] Add missing Bazel query CI job GitOrigin-RevId: 3f74f1051ad22264a0ac3260db8f58236d921caf --- devertexwahn/ci/ubuntu-24.04-bazel-query.yaml | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 devertexwahn/ci/ubuntu-24.04-bazel-query.yaml diff --git a/devertexwahn/ci/ubuntu-24.04-bazel-query.yaml b/devertexwahn/ci/ubuntu-24.04-bazel-query.yaml new file mode 100644 index 00000000..e64808d2 --- /dev/null +++ b/devertexwahn/ci/ubuntu-24.04-bazel-query.yaml @@ -0,0 +1,65 @@ +# +# SPDX-FileCopyrightText: Copyright 2022-2024 Julian Amann +# SPDX-License-Identifier: Apache-2.0 +# + +# GCC11 on Ubuntu 24.04 +# Make sure that Bazel query works + +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=gcc13 -- //tools/compiler_feature_dump + displayName: "Compiler feature dump" + + - script: | + df + displayName: 'Show disk space' + + - script: | + cd devertexwahn + bazel query //... + displayName: "Bazel query" + + - script: | + df + displayName: 'Show disk space' + + - script: | + cd devertexwahn + bazel cquery --config=gcc13 //... + displayName: "Bazel cquery" + + - script: | + df + displayName: 'Show disk space'