-
Notifications
You must be signed in to change notification settings - Fork 41
50 lines (44 loc) · 1.02 KB
/
ci.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:
pull_request:
paths-ignore:
- '**.md'
- 'COPYRIGHT'
- 'LICENSE**'
- 'design/**'
branches: [develop]
push:
paths-ignore:
- '**.md'
- 'COPYRIGHT'
- 'LICENSE**'
- 'design/**'
branches: [develop]
jobs:
build-binary:
name: build
runs-on:
group: bottlerocket
labels: bottlerocket_ubuntu-latest_8-core
steps:
- uses: actions/checkout@v3
- run: rustup update stable
- run: make build
- name: Ensure git is clean
shell: bash
run: |
git --no-pager diff
test -z "$(git status --untracked-files=all --porcelain)"
build-container:
name: brupop-image
runs-on:
group: bottlerocket
labels: bottlerocket_ubuntu-latest_8-core
steps:
- uses: actions/checkout@v3
- run: make brupop-image
- name: Ensure git is clean
shell: bash
run: |
git --no-pager diff
test -z "$(git status --untracked-files=all --porcelain)"