-
Notifications
You must be signed in to change notification settings - Fork 12
47 lines (40 loc) · 956 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
36
37
38
39
40
41
42
43
44
45
46
47
name: Build
on:
push:
branches:
- master
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
scanner-build:
runs-on: ubuntu-latest
container:
image: quay.io/stackrox-io/apollo-ci:scanner-test-0.3.61
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- uses: ./.github/actions/job-preamble
- name: genesis-dump
run: |
source ./scripts/ci/lib.sh
generate_genesis_dump
- name: db-dump
run: |
source ./scripts/ci/lib.sh
generate_db_dump
- name: build-bundle
run: |
source ./scripts/ci/lib.sh
build_bundle
- name: scanner-db-bundle
run: |
source ./scripts/ci/lib.sh
build_db_bundle
- name: Build images
run: make all-images