-
Notifications
You must be signed in to change notification settings - Fork 16
155 lines (143 loc) · 4.31 KB
/
ci.yaml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
env:
BAZEL_STARTUP_FLAGS: --bazelrc=${{ github.workspace }}/.github/github.bazelrc
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-14
- os: ubuntu-20.04
- os: windows-2019
steps:
# Checkout the code
- uses: actions/checkout@v2
# Caches and restores the Bazel outputs.
- name: Retain Bazel cache (linux)
uses: actions/cache@v2
env:
cache-name: bazel-cache
with:
path: |
~/.cache/bazelisk
~/.cache/bazel
key: ${{ runner.os }}-${{ env.cache-name }}
if: startswith(runner.os, 'Linux')
- name: Retain Bazel cache (MacOS)
uses: actions/cache@v2
env:
cache-name: bazel-cache
with:
path: |
~/.cache/bazelisk
/private/var/tmp/_bazel_runner
key: ${{ runner.os }}-${{ env.cache-name }}
if: startswith(runner.os, 'MacOS')
- name: Retain Bazel cache (Windows)
uses: actions/cache@v2
env:
cache-name: bazel-cache
with:
path: |
~/.cache/bazelisk
C:/bzl
key: ${{ runner.os }}-${{ env.cache-name }}
if: startswith(runner.os, 'Windows')
- name: Setup Bazelrc (Windows)
run: |
echo "startup --output_user_root=C:/bzl" > ./user.bazelrc
if: startswith(runner.os, 'Windows')
- name: Setup Bazelrc
run: |
echo "common --keep_going" >> ./user.bazelrc
# Build and Test the code
- name: Test (Unix)
run: bazel ${BAZEL_STARTUP_FLAGS[@]} test //...
if: startswith(runner.os, 'Windows') != true
- name: Test (Windows)
run: bazel $env:BAZEL_STARTUP_FLAGS test //...
if: startswith(runner.os, 'Windows')
ci-aspects:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-14
- os: ubuntu-20.04
- os: windows-2019
steps:
# Checkout the code
- uses: actions/checkout@v2
# Caches and restores the Bazel outputs.
- name: Retain Bazel cache (linux)
uses: actions/cache@v2
env:
cache-name: bazel-cache
with:
path: |
~/.cache/bazelisk
~/.cache/bazel
key: ${{ runner.os }}-${{ env.cache-name }}
if: startswith(runner.os, 'Linux')
- name: Retain Bazel cache (MacOS)
uses: actions/cache@v2
env:
cache-name: bazel-cache
with:
path: |
~/.cache/bazelisk
/private/var/tmp/_bazel_runner
key: ${{ runner.os }}-${{ env.cache-name }}
if: startswith(runner.os, 'MacOS')
- name: Retain Bazel cache (Windows)
uses: actions/cache@v2
env:
cache-name: bazel-cache
with:
path: |
~/.cache/bazelisk
C:/bzl
key: ${{ runner.os }}-${{ env.cache-name }}
if: startswith(runner.os, 'Windows')
- name: Setup Bazelrc (Windows)
run: |
echo "startup --output_user_root=C:/bzl" > ./user.bazelrc
if: startswith(runner.os, 'Windows')
- name: Setup Bazelrc
run: |
echo "common --config=strict" >> ./user.bazelrc
echo "common --keep_going" >> ./user.bazelrc
# Build and Test the code
- name: Test (Unix)
run: bazel ${BAZEL_STARTUP_FLAGS[@]} test //...
if: startswith(runner.os, 'Windows') != true
- name: Test (Windows)
run: bazel $env:BAZEL_STARTUP_FLAGS test //...
if: startswith(runner.os, 'Windows')
ci-buildifier:
runs-on: ubuntu-latest
steps:
# Checkout the code
- uses: actions/checkout@v2
- name: Download Buildifier
run: |
wget "https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildifier-linux-amd64" -O buildifier
chmod +x buildifier
- name: Buildifier
run: ./buildifier -lint=warn -mode=check -warnings=all -r ${{ github.workspace }}
ci-gofmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Jerome1337/[email protected]
with:
gofmt-flags: -e -d