Skip to content

Commit

Permalink
Add missing Bazel query CI job
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 3f74f1051ad22264a0ac3260db8f58236d921caf
  • Loading branch information
Vertexwahn committed Jan 18, 2025
1 parent 25daea5 commit 6dfd56a
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions devertexwahn/ci/ubuntu-24.04-bazel-query.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
#
# SPDX-FileCopyrightText: Copyright 2022-2024 Julian Amann <[email protected]>
# 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'

0 comments on commit 6dfd56a

Please sign in to comment.