-
Notifications
You must be signed in to change notification settings - Fork 17
94 lines (92 loc) · 2.75 KB
/
static-builder.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
# Builds the Docker images we use for producing our static builds.
name: Static Builder
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- 'master'
pull_request:
concurrency:
group: static-${{ github.ref }}
cancel-in-progress: true
jobs:
build-check:
name: Build Check
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Buildx
uses: docker/setup-buildx-action@v2
- name: Test Build
uses: docker/build-push-action@v4
with:
load: false
push: false
tags: netdata/static-builder:test
file: ./static-builder/Dockerfile
pr-checks:
name: PR Checks
if: github.event_name == 'pull_request'
needs: build-check
runs-on: ubuntu-latest
strategy:
matrix:
platforms:
- linux/386
- linux/arm/v7
- linux/arm64/v8
- linux/ppc64le
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup QEMU
uses: docker/setup-qemu-action@v2
- name: Setup Buildx
uses: docker/setup-buildx-action@v2
- name: Build
uses: docker/build-push-action@v4
with:
platforms: ${{ matrix.platforms }}
load: false
push: false
tags: netdata/static-builder:test
file: ./static-builder/Dockerfile
publish:
name: Publish Images
if: github.event_name == 'push' || (github.event_name == 'schedule' && github.repository == 'netdata/helper-images')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup QEMU
uses: docker/setup-qemu-action@v2
- name: Setup Buildx
uses: docker/setup-buildx-action@v2
- name: Docker Hub Login
uses: docker/login-action@v2
with:
username: netdatabot
password: ${{ secrets.DOCKER_PASSWORD }}
- name: GitHub Container Registry Login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Quay.io Login
uses: docker/login-action@v2
with:
registry: quay.io
username: ${{ secrets.NETDATABOT_QUAY_USERNAME }}
password: ${{ secrets.NETDATABOT_QUAY_TOKEN }}
- name: Docker Build
uses: docker/build-push-action@v4
with:
platforms: linux/386,linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le
push: true
file: ./static-builder/Dockerfile
tags: netdata/static-builder:latest,ghcr.io/netdata/static-builder:latest,quay.io/netdata/static-builder:latest