-
Notifications
You must be signed in to change notification settings - Fork 2.9k
80 lines (65 loc) · 1.89 KB
/
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
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
name: build flannel
on: [push, pull_request]
env:
GO_VERSION: "1.20"
LINUX_ARCHES: "amd64 arm arm64 s390x ppc64le mips64le"
jobs:
build-images:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: go mod vendor
run: go mod vendor
- name: build linux
run: |
set -e
for arch in ${LINUX_ARCHES}; do
echo "Building for arch $arch"
ARCH=$arch make dist/flanneld-$arch
file dist/flanneld-$arch
done
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build Docker image for amd64
uses: docker/build-push-action@v2
with:
context: .
file: images/Dockerfile.amd64
push: false
- name: Build Docker image for arm
uses: docker/build-push-action@v2
with:
context: .
file: images/Dockerfile.arm
push: false
- name: Build Docker image for arm64
uses: docker/build-push-action@v2
with:
context: .
file: images/Dockerfile.arm64
push: false
- name: Build Docker image for s390x
uses: docker/build-push-action@v2
with:
context: .
file: images/Dockerfile.s390x
push: false
- name: Build Docker image for ppc64le
uses: docker/build-push-action@v2
with:
context: .
file: images/Dockerfile.ppc64le
push: false
- name: Build Docker image for mips64le
uses: docker/build-push-action@v2
with:
context: .
file: images/Dockerfile.mips64le
push: false