-
Notifications
You must be signed in to change notification settings - Fork 24
35 lines (35 loc) · 1008 Bytes
/
build.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
name: Build
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'tools/**'
- '.github/dependabot.yml'
- 'bottlerocket/tests/workload/**'
push:
paths-ignore:
- 'docs/**'
- 'tools/**'
- '.github/dependabot.yml'
- 'bottlerocket/tests/workload/**'
branches: [develop]
jobs:
build:
runs-on:
group: bottlerocket
labels: bottlerocket_ubuntu-latest_8-core
steps:
- uses: actions/checkout@v4
- run: make sdk-build
# If we forget to add yamlgen changes to our commits, this will fail.
- name: ensure that git is clean
run: test -z "$(git status --untracked-files=all --porcelain)"
- run: make controller
- run: make duplicator-resource-agent
- run: make example-resource-agent
- run: make example-test-agent
- run: make example-test-agent-cli
- run: make integ-test
env:
TESTSYS_SELFTEST_SKIP_IMAGE_BUILDS: true
TESTSYS_SELFTEST_THREADS: 1