Skip to content

Commit 7bf9db1

Browse files
schoppmpdpf-team-bot
authored andcommitted
Fix Github actions config and remove obsolete Buildkite presubmit
PiperOrigin-RevId: 848253293
1 parent d332ed2 commit 7bf9db1

File tree

2 files changed

+6
-39
lines changed

2 files changed

+6
-39
lines changed

.bazelci/presubmit.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/workflows/presubmit.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ name: Distributed Point Functions
1616

1717
on:
1818
push:
19-
branches: [ "main" ]
19+
branches: [ "master" ]
2020
pull_request:
21-
branches: [ "main" ]
21+
branches: [ "master" ]
2222

2323
concurrency:
2424
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
@@ -43,12 +43,13 @@ jobs:
4343
4444
- name: "Run `bazel build` (C++14)"
4545
run: |
46-
bazel build -c opt --cxxopt=-std=c++14 --host_cxxopt=-std=c++14 -- //... -//experiments/...
46+
bazel --output_base $HOME/.cache/bazel/cpp14 build -c opt --cxxopt=-std=c++14 \
47+
--host_cxxopt=-std=c++14 -- //... -//experiments/...
4748
4849
- name: "Run `bazel build` (C++17)"
4950
run: |
50-
bazel build -c opt --cxxopt=-std=c++17 --host_cxxopt=-std=c++17 //...
51+
bazel --output_base $HOME/.cache/bazel/cpp17 build -c opt //...
5152
5253
- name: "Run `bazel test`"
5354
run: |
54-
bazel test -c opt --test_tag_filters=-benchmark //...
55+
bazel --output_base $HOME/.cache/bazel/cpp17 test -c opt --test_tag_filters=-benchmark //...

0 commit comments

Comments
 (0)