-
Notifications
You must be signed in to change notification settings - Fork 6
118 lines (102 loc) · 3.53 KB
/
main.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
on:
- push
- workflow_dispatch
jobs:
build-amd64:
runs-on: ubuntu-2404-64-cores-amd
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log into Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build for linux/amd64
uses: docker/build-push-action@v5
with:
build-args: |
VCS_REF=${{ github.sha }}
BUILDARCH=amd64
load: true
platforms: linux/amd64
tags: |
cs50/server:amd64
cs50/server:canary-amd64
cache-from: type=registry,ref=cs50/server:amd64-buildcache
cache-to: type=registry,ref=cs50/server:amd64-buildcache,mode=max
- name: Squash for linux/amd64
run: |
pip3 install docker-squash
docker-squash --tag cs50/server:amd64 cs50/server:amd64
- name: Push linux/amd64 build to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker push cs50/server:amd64
- name: Push linux/amd64 build to Docker Hub (canary)
run: |
docker push cs50/server:canary-amd64
build-arm64:
runs-on: ubuntu-2404-64-cores-arm
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log into Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build for linux/arm64
uses: docker/build-push-action@v5
with:
build-args: |
VCS_REF=${{ github.sha }}
BUILDARCH=arm64
load: true
platforms: linux/arm64
tags: |
cs50/server:arm64
cs50/server:canary-arm64
cache-from: type=registry,ref=cs50/server:arm64-buildcache
cache-to: type=registry,ref=cs50/server:arm64-buildcache,mode=max
- name: Squash for linux/arm64
run: |
pip3 install docker-squash
docker-squash --tag cs50/server:arm64 cs50/server:arm64
- name: Push linux/arm64 build to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker push cs50/server:arm64
- name: Push linux/arm64 build to Docker Hub (canary)
run: |
docker push cs50/server:canary-arm64
finalize:
needs: [build-amd64, build-arm64]
runs-on: ubuntu-latest
steps:
- name: Log into Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Create multi-arch manifest and push to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker manifest create cs50/server:latest \
--amend cs50/server:amd64 \
--amend cs50/server:arm64
docker manifest push cs50/server:latest
- name: Create multi-arch manifest and push to Docker Hub (canary)
run: |
docker manifest create cs50/server:canary \
--amend cs50/server:canary-amd64 \
--amend cs50/server:canary-arm64
docker manifest push cs50/server:canary