-
Notifications
You must be signed in to change notification settings - Fork 165
36 lines (36 loc) · 973 Bytes
/
bazel.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Bazel Build
on:
push:
branches:
- master
pull_request:
jobs:
bazel:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Mount bazel cache
uses: actions/cache@v3
with:
path: "/home/runner/.cache/bazel"
key: bazel
- name: Install bazelisk
run: |
curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64"
mkdir -p "${GITHUB_WORKSPACE}/bin/"
mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel"
chmod +x "${GITHUB_WORKSPACE}/bin/bazel"
- name: Test
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: |
"${GITHUB_WORKSPACE}/bin/bazel" test //...
- name: Build
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: |
"${GITHUB_WORKSPACE}/bin/bazel" build //...