Skip to content

Commit

Permalink
Update copy.bara.sky
Browse files Browse the repository at this point in the history
GitOrigin-RevId: a77e3e208eb843f12743bc9d580391ebcf35549c
  • Loading branch information
Vertexwahn committed Apr 22, 2024
1 parent 93345c5 commit b245a2c
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions devertexwahn/ci/ubuntu-22.04-bazel-query.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
#
# SPDX-FileCopyrightText: Copyright 2022-2024 Julian Amann <[email protected]>
# SPDX-License-Identifier: Apache-2.0
#

# GCC11 on Ubuntu 22.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=gcc11 -- //tools/compiler_information
displayName: "Show compiler information"
- 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=gcc11 //...
displayName: "Bazel cquery"
- script: |
df
displayName: 'Show disk space'

0 comments on commit b245a2c

Please sign in to comment.