-
Notifications
You must be signed in to change notification settings - Fork 0
133 lines (108 loc) · 3.89 KB
/
docker.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
name: "Build multi-arch images"
on:
push:
tags:
- "v*.*.*"
jobs:
crate-info:
name: "Extract crate info"
runs-on: "ubuntu-latest"
outputs:
version: ${{ steps.derive.outputs.version }}
steps:
- id: "derive"
name: "Derive crate info from Git tag"
run: |
FULL_REF="${{ github.ref }}"
REGEX="^refs\/tags\/v(.*)$"
[[ $FULL_REF =~ $REGEX ]];
echo "version=${BASH_REMATCH[1]}" >> $GITHUB_OUTPUT
build-amd64:
name: "Build for linux/amd64"
runs-on: "ubuntu-latest"
needs:
- "crate-info"
env:
DOCKER_REPOSITORY: "starknet/jsonrpc-to-firestark"
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- name: "Build Docker image"
run: |
docker build -t ${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}-amd64 -f ./Dockerfile .
- name: "Export Docker image"
run: |
docker save ${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}-amd64 | gzip > /tmp/amd64.tar.gz
- name: "Upload Docker image artifact"
uses: "actions/upload-artifact@v3"
with:
name: "amd64.tar.gz"
path: "/tmp/amd64.tar.gz"
build-arm64:
name: "Build for linux/arm64"
runs-on: "ubuntu-latest"
needs:
- "crate-info"
env:
DOCKER_REPOSITORY: "starknet/jsonrpc-to-firestark"
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- name: "Install cross"
run: |
cargo install --locked --version 0.2.5 cross
- name: "Build release"
run: |
cross build --release --target aarch64-unknown-linux-gnu
- name: "Build Docker image"
run: |
docker build -t ${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}-arm64 -f ./.github/workflows/docker/Dockerfile.arm64 .
- name: "Export Docker image"
run: |
docker save ${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}-arm64 | gzip > /tmp/arm64.tar.gz
- name: "Upload Docker image artifact"
uses: "actions/upload-artifact@v3"
with:
name: "arm64.tar.gz"
path: "/tmp/arm64.tar.gz"
push:
name: "Push multi-arch manifest"
runs-on: "ubuntu-latest"
needs:
- "build-amd64"
- "build-arm64"
- "crate-info"
env:
DOCKER_REPOSITORY: "starknet/jsonrpc-to-firestark"
steps:
- name: "Login to Docker Hub"
uses: "docker/login-action@v1.6.0"
with:
username: "${{ secrets.DOCKER_HUB_USERNAME }}"
password: "${{ secrets.DOCKER_HUB_PASSWORD }}"
- name: "Download linux/amd64 image"
uses: "actions/download-artifact@v3"
with:
name: "amd64.tar.gz"
path: "/tmp/"
- name: "Download linux/arm64/v8 image"
uses: "actions/download-artifact@v3"
with:
name: "arm64.tar.gz"
path: "/tmp/"
- name: "Load Docker images"
run: |
docker load < /tmp/amd64.tar.gz
docker load < /tmp/arm64.tar.gz
- name: "Push Docker images"
run: |
docker push ${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}-amd64
docker push ${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}-arm64
docker manifest create ${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }} \
${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}-amd64 \
${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}-arm64
docker manifest create ${DOCKER_REPOSITORY}:latest \
${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}-amd64 \
${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}-arm64
docker manifest push ${DOCKER_REPOSITORY}:${{ needs.crate-info.outputs.version }}
docker manifest push ${DOCKER_REPOSITORY}:latest