Skip to content

Commit

Permalink
Fix incorrect Bazel call
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 7ad471071d9410c50f446deb07a2d98ccd0c11cf
  • Loading branch information
Vertexwahn committed Jan 19, 2025
1 parent a6c9401 commit 74d140d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions devertexwahn/ci/ubuntu-22.04-clang19.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,34 +46,34 @@ steps:
# fastbuild
- script: |
cd devertexwahn
bazel build --config=clang19 -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel build clang14-fastbuild'
bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel build clang19-fastbuild'
- script: |
cd devertexwahn
bazel test --config=clang19 -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel test clang14-fastbuild'
bazel test --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel test clang19-fastbuild'
# dbg
- script: |
cd devertexwahn
bazel build --config=clang19 --compilation_mode=dbg -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel build clang14-dbg'
bazel build --config=clang19 --compilation_mode=dbg -- //core/... //imaging/... //flatland/...
displayName: 'Bazel build clang19-dbg'
- script: |
cd devertexwahn
bazel test --config=clang19 --compilation_mode=dbg -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel test clang14-dbg'
bazel test --config=clang19 --compilation_mode=dbg -- //core/... //imaging/... //flatland/...
displayName: 'Bazel test clang19-dbg'
- script: |
cd devertexwahn
bazel build --config=clang19 --compilation_mode=opt -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel build clang14-opt'
bazel build --config=clang19 --compilation_mode=opt -- //core/... //imaging/... //flatland/...
displayName: 'Bazel build clang19-opt'
- script: |
cd devertexwahn
bazel test --config=clang19 --compilation_mode=opt -- bazel build --config=clang19 -- //core/... //imaging/... //flatland/...
displayName: 'Bazel test clang14-opt'
bazel test --config=clang19 --compilation_mode=opt -- //core/... //imaging/... //flatland/...
displayName: 'Bazel test clang194-opt'
- script: |
df
Expand Down

0 comments on commit 74d140d

Please sign in to comment.