Skip to content

Commit

Permalink
Project import generated by Copybara.
Browse files Browse the repository at this point in the history
GitOrigin-RevId: ec9afc913be3cd04f78d21f1fee5693e58e32413
  • Loading branch information
Vertexwahn committed Jan 19, 2025
1 parent e6c2982 commit 8649ed9
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions devertexwahn/ci/ubuntu-24.04-clang19.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ steps:
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
Expand All @@ -46,33 +41,33 @@ steps:
# fastbuild
- script: |
cd devertexwahn
bazel build --config=clang19 -- //...
bazel build --config=clang19 -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel build clang14-fastbuild'
- script: |
cd devertexwahn
bazel test --config=clang19 -- //...
bazel test --config=clang19 -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel test clang14-fastbuild'
# dbg
- script: |
cd devertexwahn
bazel build --config=clang19 --compilation_mode=dbg -- //...
bazel build --config=clang19 --compilation_mode=dbg -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel build clang14-dbg'
- script: |
cd devertexwahn
bazel test --config=clang19 --compilation_mode=dbg -- //...
bazel test --config=clang19 --compilation_mode=dbg -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel test clang14-dbg'
- script: |
cd devertexwahn
bazel build --config=clang19 --compilation_mode=opt -- //...
bazel build --config=clang19 --compilation_mode=opt -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel build clang14-opt'
- script: |
cd devertexwahn
bazel test --config=clang19 --compilation_mode=opt -- //...
bazel test --config=clang19 --compilation_mode=opt -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel test clang14-opt'
- script: |
Expand Down

0 comments on commit 8649ed9

Please sign in to comment.