-
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: 3f74f1051ad22264a0ac3260db8f58236d921caf
- Loading branch information
1 parent
25daea5
commit 6dfd56a
Showing
1 changed file
with
65 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,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' |