-
Notifications
You must be signed in to change notification settings - Fork 2.8k
63 lines (49 loc) · 1.8 KB
/
ci-docker-all-in-one.yml
File metadata and controls
63 lines (49 loc) · 1.8 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Build all-in-one
on:
workflow_call:
permissions:
contents: read
packages: read # This allows the runner to pull from GHCR
jobs:
all-in-one:
runs-on: ubuntu-latest
timeout-minutes: 30 # max + 3*std over the last 2600 runs
steps:
- uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
submodules: true
- name: Fetch git tags
run: git fetch --prune --unshallow --tags
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version: 1.26.x
cache-dependency-path: ./go.sum
- name: Log in to GHCR
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: ./.github/actions/setup-node.js
- uses: ./.github/actions/setup-branch
- run: make install-ci
- uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
- name: Define BUILD_FLAGS var if running on a Pull Request or Merge Queue
run: |
case ${GITHUB_EVENT_NAME} in
pull_request|merge_group)
echo "BUILD_FLAGS=-l -p linux/$(go env GOARCH)" >> ${GITHUB_ENV}
;;
*)
echo "BUILD_FLAGS=" >> ${GITHUB_ENV}
;;
esac
- name: Build, test, and publish all-in-one image
run: |
bash scripts/build/build-all-in-one-image.sh ${{ env.BUILD_FLAGS }} v2
env:
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }}