-
Notifications
You must be signed in to change notification settings - Fork 3
275 lines (238 loc) · 9.03 KB
/
release.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
name: Release Pipeline
on:
push:
branches: ['main']
tags:
- "v*"
jobs:
generate-matrix:
if: startsWith(github.ref, 'refs/tags/v')
name: 'Generate matrix from cabal'
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
runs-on: ubuntu-latest
steps:
- name: Extract the tested GHC versions
id: set-matrix
uses: kleidukos/[email protected]
with:
cabal-file: print-api.cabal
ubuntu-version: 'latest'
macos-version: 'latest'
version: 0.1.7.1
generate-alpine-matrix:
if: startsWith(github.ref, 'refs/tags/v')
name: 'Generate Alpine matrix from cabal'
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
runs-on: ubuntu-latest
steps:
- name: Extract the tested GHC versions
id: set-matrix
uses: kleidukos/[email protected]
with:
cabal-file: print-api.cabal
version: 0.1.7.1
ubuntu-version: 'latest'
tests:
name: ${{ matrix.ghc }} on ${{ matrix.os }}
needs: generate-matrix
runs-on: ${{ matrix.os }}
strategy:
matrix: ${{ fromJSON(needs.generate-matrix.outputs.matrix) }}
steps:
- name: "Install tools"
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt install upx-ucl
- name: Checkout base repo
uses: actions/checkout@v4
- name: Set up Haskell
id: setup-haskell
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: 'latest'
- name: Configure
run: |
ARCHITECTURE=$(uname -m)
echo "ARCH=$ARCHITECTURE" >> $GITHUB_ENV
echo ${{ env.ARCH }}
cabal configure --enable-tests
- name: Freeze
run: cabal freeze --project-file=cabal.release.project
- name: Cache
uses: actions/[email protected]
with:
path: ${{ steps.setup-haskell.outputs.cabal-store }}
key: ${{ runner.os }}-ghc-${{ matrix.ghc }}-${{ hashFiles('**/plan.json') }}
restore-keys: ${{ runner.os }}-ghc-${{ matrix.ghc }}-
- name: Build
run: cabal build --project-file=cabal.release.project
- name: Install
run: |
mkdir distribution
for executable in 'print-api' 'print-api-${{ matrix.ghc }}'; do
path=$(cabal -v0 --project-file=cabal.release.project list-bin "print-api:exe:${executable}")
cp "${path}" distribution
done
echo "$GITHUB_WORKSPACE/distribution" >> "$GITHUB_PATH"
- name: Test
run: cabal test --project-file=cabal.release.project --test-options "--xml=../print-api/report.xml" all
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
with:
report_paths: "report.xml"
- name: Test
run: cabal test --project-file=cabal.static.project --test-options "--xml=../print-api/report.xml" all
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
with:
report_paths: "report.xml"
- name: File type
run: file distribution/*
- name: Post-process executables
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
for executable in distribution/*; do
strip "${executable}"
upx -9 "${executable}"
done
- name: Package the executables
run: |
executables=( $(ls distribution) )
version=$(./distribution/print-api --version)
archive="print-api-${version}-${{ runner.os }}-${{ env.ARCH }}-ghc-${{ matrix.ghc }}.tar.gz"
tar -czvf "${archive}" -C distribution "${executables[@]}"
echo "PRINTAPI_EXEC_TAR=${archive}" >> $GITHUB_ENV
- name: Upload the executables archive
uses: actions/upload-artifact@v3
with:
name: artifact
path: ${{ env.PRINTAPI_EXEC_TAR }}
build-alpine:
name: ${{ matrix.ghc }} on alpine-3.20
needs: generate-alpine-matrix
runs-on: ${{ matrix.os }}
strategy:
matrix: ${{ fromJSON(needs.generate-alpine-matrix.outputs.matrix) }}
container: 'alpine:3.20'
steps:
- name: Install extra dependencies
shell: sh
run: |
apk add bash binutils-gold curl \
curl file g++ gcc git gmp-dev \
jq libc-dev libffi-dev make \
musl-dev ncurses-dev perl pkgconfig \
sudo tar upx xz zlib-dev zlib-static
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: 'latest'
- name: Configure
run: |
ARCHITECTURE=$(uname -m)
echo "ARCH=$ARCHITECTURE" >> $GITHUB_ENV
echo ${{ env.ARCH }}
cabal configure --enable-tests
- name: Freeze
run: cabal freeze --project-file=cabal.static.project
- uses: actions/cache@v4
with:
path: ${{ steps.setup-haskell.outputs.cabal-store }}
key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-${{ hashFiles('**/plan.json') }}
restore-keys: ${{ runner.os }}-${{ steps.setup.outputs.ghc-version }}-
- name: Build
run: cabal build --project-file=cabal.static.project
- name: Install
run: |
mkdir distribution
for executable in 'print-api' 'print-api-${{ matrix.ghc }}'; do
path=$(cabal -v0 --project-file=cabal.static.project list-bin "print-api:exe:${executable}")
cp "${path}" distribution
done
echo "$GITHUB_WORKSPACE/distribution" >> "$GITHUB_PATH"
- name: Test
run: cabal test --project-file=cabal.static.project --test-options "--xml=../print-api/report.xml" all
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
with:
report_paths: "report.xml"
- name: Test
run: cabal test --project-file=cabal.static.project --test-options "--xml=../print-api/report.xml" all
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
with:
report_paths: "report.xml"
- name: File type
run: file distribution/*
- name: Post-process executables
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
for executable in distribution/*; do
strip "${executable}"
upx -9 "${executable}"
done
- name: Package the executables
shell: bash
run: |
executables=( $(ls distribution) )
version=$(./distribution/print-api --version)
archive="print-api-${version}-${{ runner.os }}-${{ env.ARCH }}-static-ghc-${{ matrix.ghc }}.tar.gz"
tar -czvf "${archive}" -C distribution "${executables[@]}"
echo "PRINTAPI_EXEC_TAR=${archive}" >> $GITHUB_ENV
- name: Upload the executables archive
uses: actions/upload-artifact@v3
with:
name: artifact
path: ${{ env.PRINTAPI_EXEC_TAR }}
# NOTE: We run upx on the executables in every linux job to compress them.
# That means, the assets that are linked dynamically _appear_ to be statically
# linked after that, despite not being compiled statically in Alpine with
# musl. They are still dynamically-linked once they are decompresed.
# See: https://stackoverflow.com/questions/20740625/does-upx-magically-transform-binaries-from-dynamically-linked-into-statically-li
release:
name: Create a GitHub Release with the binary artifacts
runs-on: ubuntu-latest
needs: ['tests', 'build-alpine']
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: ./artifacts
- name: Prepare release
shell: bash
run: |
create-tarball() {
local name="${1}"
local pattern="${2}"
echo "::group::Creating release tarball ${name}.tar.gz"
mkdir "${name}"
find artifacts -type f -name "${pattern}" -exec tar -x -z -f {} -C "${name}" \;
local files=( $(find "${name}" -type f -printf '%P\n') )
if [[ ${#files[@]} > 0 ]]; then
echo "Packaging ${#files[@]} files"
tar -c -z -v -f "release/${name}.tar.gz" -C "${name}" "${files[@]}"
else
echo "No files to package"
fi
echo '::endgroup::'
}
mkdir release
for base in $(ls artifacts | cut -d - -f -5 | sort --uniq); do
create-tarball "${base}" "${base}-ghc-*.tar.gz"
create-tarball "${base}-static" "${base}-static-ghc-*.tar.gz"
done
- name: Release
uses: softprops/action-gh-release@v2
with:
prerelease: true
draft: true
files: ./release/*