-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (92 loc) · 2.87 KB
/
build-deploy.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
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
95
96
97
98
99
100
101
102
103
104
name: ensemble-operator build-and deploy
on:
workflow_dispatch:
pull_request: []
push:
branches:
- main
jobs:
build-api:
permissions:
packages: write
runs-on: ubuntu-latest
strategy:
matrix:
x: [["ghcr.io/converged-computing/ensemble-operator-api:rockylinux9", "docker/Dockerfile.rocky", "9"],
["ghcr.io/converged-computing/ensemble-operator-api:rockylinux8", "docker/Dockerfile.rocky", "8"],
["ghcr.io/converged-computing/ensemble-operator-api:ubuntu-jammy", "docker/Dockerfile.ubuntu", "22.04"],
["ghcr.io/converged-computing/ensemble-operator-api:ubuntu-focal", "docker/Dockerfile.ubuntu", "20.04"]]
name: ${{ matrix.x[0] }}
steps:
- uses: actions/checkout@v4
- name: Build Containers
env:
container: ${{ matrix.x[0] }}
dockerfile: ${{ matrix.x[1] }}
tag: ${{ matrix.x[2] }}
run: |
cd python/
docker build --build-arg tag=${tag} -f ${dockerfile} -t ${container} .
- name: GHCR Login
if: (github.event_name != 'pull_request')
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy Container
if: (github.event_name != 'pull_request')
env:
container: ${{ matrix.x[0] }}
run: docker push ${{ env.container }}
# Only build arm image on merge, takes too long otherwise
build-arm:
if: (github.event_name == 'release')
runs-on: ubuntu-latest
name: make and build arm
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ^1.20
- name: GHCR Login
if: (github.event_name != 'pull_request')
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Add custom buildx ARM builder
run: |
docker buildx create --name armbuilder
docker buildx use armbuilder
docker buildx inspect --bootstrap
- name: Deploy Container
run: |
go mod tidy
make arm-deploy
build:
runs-on: ubuntu-latest
strategy:
matrix:
command: [docker]
name: make and build ${{ matrix.command }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ^1.20
- name: GHCR Login
if: (github.event_name != 'pull_request')
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Container
run: make ${{ matrix.command }}-build
- name: Deploy Container
if: (github.event_name != 'pull_request')
run: make ${{ matrix.command }}-push