aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/bazel.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/bazel.yml')
-rw-r--r--.github/workflows/bazel.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml
deleted file mode 100644
index c101eb66..00000000
--- a/.github/workflows/bazel.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Build and Test with Bazel
-
-on: [push, pull_request]
-
-jobs:
- build:
- timeout-minutes: 120
- strategy:
- matrix:
- os: [ubuntu-latest, macos-latest, windows-latest]
-
- runs-on: ${{matrix.os}}
-
- steps:
- - uses: actions/checkout@v3
- - name: Download dependencies
- run: python3 utils/git-sync-deps
- - name: Mount Bazel cache
- uses: actions/cache@v3
- with:
- path: ~/.bazel/cache
- key: bazel-cache-${{ runner.os }}
- - name: Build All
- run: bazel --output_user_root=~/.bazel/cache build //...
- - name: Test All
- run: bazel --output_user_root=~/.bazel/cache test //...