-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitOrigin-RevId: 6161386c16b3ef808aaf3b70f533ed522730c9b3
- Loading branch information
1 parent
9d18f78
commit 3de4baa
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |