-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (36 loc) · 1.09 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: CI
on:
workflow_dispatch:
push:
branches:
- "main"
env:
BAZELISK_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPAL_RPC_CREDENTIALS: ${{ secrets.OPAL_RPC_CREDENTIALS }}
jobs:
build-all:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up authentication
shell: bash
run: cp infra/bazelrc .bazelrc.user
- name: Build api
run: bazel build //engflow/api/...
- name: Build auth
run: bazel build //engflow/auth/...
- name: Build cluster
run: bazel build //engflow/cluster/...
- name: Build eventstore
run: bazel build //engflow/eventstore/...
- name: Build iam
run: bazel build //engflow/iam/...
- name: Build notification
run: bazel build //engflow/notification/...
- name: Build resourceusage
run: bazel build //engflow/resourceusage/...
- name: Build resultstore
run: bazel build //engflow/resultstore/...
- name: Build type
run: bazel build //engflow/type/...