-
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.
Project import generated by Copybara.
GitOrigin-RevId: 59d39ea6da94675e01ad30a3f2606dfdc0755f64
- Loading branch information
1 parent
3661711
commit e6c2982
Showing
19 changed files
with
83 additions
and
78 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
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
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
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
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
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# | ||
# SPDX-FileCopyrightText: Copyright 2022-2023 Julian Amann <[email protected]> | ||
# SPDX-FileCopyrightText: Copyright 2022-2025 Julian Amann <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
# Clang 14 on Ubuntu 22.04 | ||
# Make sure we can build with Clang 14 in all different compilation modes | ||
# Clang 19 on Ubuntu 24.04 | ||
# Make sure we can build with Clang 16 in all different compilation modes | ||
|
||
steps: | ||
- script: | | ||
df | ||
displayName: 'Show disk space' | ||
displayName: "Show disk space" | ||
- checkout: self | ||
clean: true | ||
|
@@ -25,51 +25,56 @@ steps: | |
- script: | | ||
df | ||
displayName: 'Show disk space' | ||
displayName: "Show disk space" | ||
- script: | | ||
cd devertexwahn | ||
bazel version | ||
displayName: 'Show Bazel version' | ||
displayName: "Show Bazel version" | ||
- script: | | ||
sudo apt-get update | ||
sudo apt-get -y install libncurses5 # needed by Clang | ||
displayName: "Install libncurses5" | ||
- script: | | ||
cd devertexwahn | ||
bazel run --config=clang19 --compilation_mode=dbg -- //tools/compiler_feature_dump | ||
displayName: "Compiler feature dump" | ||
# fastbuild | ||
- script: | | ||
cd devertexwahn | ||
bazel build --config=clang16 -- //... | ||
bazel build --config=clang19 -- //... | ||
displayName: 'Bazel build clang14-fastbuild' | ||
- script: | | ||
cd devertexwahn | ||
bazel test --config=clang16 -- //... | ||
bazel test --config=clang19 -- //... | ||
displayName: 'Bazel test clang14-fastbuild' | ||
# dbg | ||
- script: | | ||
cd devertexwahn | ||
bazel build --config=clang16 --compilation_mode=dbg -- //... | ||
bazel build --config=clang19 --compilation_mode=dbg -- //... | ||
displayName: 'Bazel build clang14-dbg' | ||
- script: | | ||
cd devertexwahn | ||
bazel test --config=clang16 --compilation_mode=dbg -- //... | ||
bazel test --config=clang19 --compilation_mode=dbg -- //... | ||
displayName: 'Bazel test clang14-dbg' | ||
- script: | | ||
cd devertexwahn | ||
bazel build --config=clang16 --compilation_mode=opt -- //... | ||
bazel build --config=clang19 --compilation_mode=opt -- //... | ||
displayName: 'Bazel build clang14-opt' | ||
- script: | | ||
cd devertexwahn | ||
bazel test --config=clang16 --compilation_mode=opt -- //... | ||
bazel test --config=clang19 --compilation_mode=opt -- //... | ||
displayName: 'Bazel test clang14-opt' | ||
- script: | | ||
df | ||
displayName: 'Show disk space' | ||
displayName: "Show disk space" |
Oops, something went wrong.