-
Notifications
You must be signed in to change notification settings - Fork 0
194 lines (165 loc) · 7.01 KB
/
build.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
name: Build binaries and container images
on:
push:
workflow_dispatch:
schedule: [ cron: '0 4 * * *' ]
permissions:
packages: write
contents: write
jobs:
build:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER: aarch64-linux-gnu-gcc
CC_aarch64_unknown_linux_musl: aarch64-linux-gnu-gcc
CARGO_TARGET_ARMV7_UNKNOWN_LINUX_MUSLEABIHF_LINKER: arm-linux-gnueabihf-gcc
CC_armv7_unknown_linux_musleabihf: arm-linux-gnueabihf-gcc
outputs:
commit: ${{ steps.meta.outputs.commit }}
version: ${{ steps.meta.outputs.version }}
continue: ${{ steps.meta.outputs.continue }}
strategy:
fail-fast: true
matrix:
arch: [ amd64, arm32v7, arm64v8 ]
include:
- arch: amd64
target: x86_64-unknown-linux-musl
platform: linux/amd64
- arch: arm32v7
target: armv7-unknown-linux-musleabihf
platform: linux/arm/v7
- arch: arm64v8
target: aarch64-unknown-linux-musl
platform: linux/arm64
steps:
- uses: actions/checkout@v4
- run: git clone --depth=1 https://github.com/redlib-org/redlib
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
# This action's built-in cache setup expects the Cargo.toml
# to be at a specific unchangable location which won't work for
# our setup. So we'll setup our own caching.
cache: false
target: ${{ matrix.target }}
- id: meta
run: |
cd redlib
echo "continue=$(diff -u ../.last_commit <(git rev-parse --short HEAD) > /dev/null 2>&1 && echo false || echo true)" >> $GITHUB_OUTPUT
echo "version=$(cargo metadata --format-version 1 --no-deps | jq .packages[0].version -r | sed 's/^/v/')" >> $GITHUB_OUTPUT
echo "commit=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- if: ${{ ( steps.meta.outputs.continue == 'true' ) && ( matrix.arch == 'amd64' ) }}
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends musl-tools
- if: ${{ ( steps.meta.outputs.continue == 'true' ) && ( matrix.arch == 'arm32v7' ) }}
run: |
sudo apt-get update
sudo apt-get install -y gcc-arm-linux-gnueabihf musl-tools
- if: ${{ ( steps.meta.outputs.continue == 'true' ) && ( matrix.arch == 'arm64v8' ) }}
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu musl-tools
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: actions/cache/restore@v4
id: build-cache
with:
path: |
/home/runner/.cargo
/home/runner/work/redlib/redlib/redlib/target
key: build-cache-matrix-${{ matrix.arch }}-${{ hashFiles('./redlib/Cargo.toml') }}
- if: ${{ steps.meta.outputs.continue == 'true' }}
run: |
cd redlib
cargo build --release --target ${{ matrix.target }}
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: actions/cache/save@v4
with:
path: |
/home/runner/.cargo
/home/runner/work/redlib/redlib/redlib/target
key: ${{ steps.build-cache.outputs.cache-primary-key }}
- if: ${{ steps.meta.outputs.continue == 'true' }}
run: tar czfv redlib-${{ matrix.target }}.tar.gz -C redlib/target/${{ matrix.target }}/release/ redlib
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target }}
path: redlib-${{ matrix.target }}.tar.gz
- if: ${{ steps.meta.outputs.continue == 'true' }}
run: cp -v redlib/target/${{ matrix.target }}/release/redlib ./redlib-bin
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: docker/setup-qemu-action@v3
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: docker/setup-buildx-action@v3
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: docker/metadata-action@v5
id: image-meta
with:
images: ghcr.io/kankerdev/redlib
tags: |
type=raw,value=${{ matrix.arch }}-${{ steps.meta.outputs.version }},enable={{is_default_branch}}
type=raw,value=${{ matrix.arch }}-${{ steps.meta.outputs.commit }},enable={{is_default_branch}}
type=raw,value=${{ matrix.arch }},enable={{is_default_branch}}
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: actions/cache/restore@v4
id: image-cache
with:
path: .docker_cache
# Not a fan of having to use the Dockerfile as a reference but as of the time of
# writing, GitHub doesn't allow us to update existing runner caches of the same name
key: build-cache-matrix-${{ matrix.arch }}-${{ hashFiles('./Dockerfile') }}
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.image-meta.outputs.tags }}
context: .
cache-to: type=local,dest=.docker_cache/
cache-from: type=local,src=.docker_cache/
platforms: ${{ matrix.platform }}
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: actions/cache/save@v4
with:
path: .docker_cache
key: ${{ steps.image-cache.outputs.cache-primary-key }}
merge:
if: ${{ needs.build.outputs.continue == 'true' }}
runs-on: ubuntu-latest
needs: [ build ]
env:
IMAGE: ghcr.io/kankerdev/redlib
COMMIT: ${{ needs.build.outputs.commit }}
VERSION: ${{ needs.build.outputs.version }}
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 } # Need history to push to repo
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: |
docker buildx imagetools create \
--tag ${IMAGE}:${COMMIT} ${IMAGE}:{amd64,arm32v7,arm64v8}-${COMMIT}
docker buildx imagetools create \
--tag ${IMAGE}:${VERSION} ${IMAGE}:{amd64,arm32v7,arm64v8}-${VERSION}
docker buildx imagetools create \
--tag ${IMAGE}:latest ${IMAGE}:{amd64,arm32v7,arm64v8}
- run: |
OLD=$(cat .last_commit)
NEW=${COMMIT}
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
echo "${NEW}" > .last_commit
git add .last_commit
git commit -m "Update .last_commit" -m "${OLD} >> ${NEW}"
git status
git push -u origin master