Disable bazel/buck CI jobs on pull requests

These are somewhat annoying to set up for local development, and
iterating a PR via GitHub Actions remote builds is painful. Anything
that would break these is always easy enough to fix up afterward.
This commit is contained in:
David Tolnay 2021-04-16 15:57:21 -07:00
parent bada403986
commit 42c1ee806f
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -54,6 +54,7 @@ jobs:
buck:
name: Buck
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
@ -80,6 +81,7 @@ jobs:
bazel:
name: Bazel
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v2
- name: Install Bazel