-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 924 Bytes
/
main.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: CI
on:
push:
branches:
- "**"
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jidicula/[email protected]
with: { clang-format-version: "15" }
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: bazel build --config=ci ...
build-windows:
runs-on: windows-latest
steps:
- name: bazel visual studio 17.6 workaround # https://github.com/bazelbuild/bazel/issues/18592
run: Remove-Item -Path "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg" -Force -Recurse
- uses: actions/checkout@v4
- run: bazel build --config=ci //...
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./CheckDist.sh