35 lines
860 B
YAML
35 lines
860 B
YAML
name: Build and Test with Bazel
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
timeout-minutes: 120
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-2019]
|
|
|
|
runs-on: ${{matrix.os}}
|
|
|
|
steps:
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
with:
|
|
fetch-depth: '0'
|
|
- name: Download dependencies
|
|
run: python3 utils/git-sync-deps
|
|
- name: Mount Bazel cache
|
|
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
|
|
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 //...
|