Skip to content

Commit

Permalink
Add gcc11 part2 CI job
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 6161386c16b3ef808aaf3b70f533ed522730c9b3
  • Loading branch information
Vertexwahn committed Apr 22, 2024
1 parent 9d18f78 commit 3de4baa
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions devertexwahn/ci/ubuntu-22.04-gcc11-dbg-part2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
#
# SPDX-FileCopyrightText: Copyright 2022-2023 Julian Amann <[email protected]>
# 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'

0 comments on commit 3de4baa

Please sign in to comment.