-
-
Notifications
You must be signed in to change notification settings - Fork 1
227 lines (189 loc) · 5.55 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
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
name: Build
on:
push:
branches:
- master
paths:
- 'qob'
- '**.yml'
- lisp/**
- cmds/**
- src/**
- scripts/**
- test/**
- '**.json'
pull_request:
branches:
- master
paths-ignore:
- '**.md'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
VERSION: 0.1.0
LISP_VER: 2.4.9
REPO_BIN: 'cl-qob/binaries'
jobs:
build-unix:
runs-on: [ubuntu-latest, macos-latest]
strategy:
fail-fast: false
matrix:
target:
- linux-arm64
- linux-x64
- macos-arm64
- macos-x64
steps:
- uses: actions/checkout@v4
- name: Setup SBCL
uses: cheeze2000/setup-sbcl@main
with:
version: ${{ env.LISP_VER }}
- name: Install Quicklisp
run: |
make install-ql
- name: Building...
run: |
make build
- name: Prepare content...
run: |
mkdir dist
mv bin/qob dist
mv lisp dist
mv LICENSE dist
mv README.md dist
- name: Setup environment (Unix)
if: contains(fromJSON('["linux-arm64", "linux-x64", "macos-arm64", "macos-x64"]'), matrix.target)
run: |
echo "_EXT=tar.gz" >> $GITHUB_ENV
- name: Change permissions (Unix)
if: contains(fromJSON('["linux-arm64", "linux-x64", "macos-arm64", "macos-x64"]'), matrix.target)
run: |
chmod -R 777 ./dist
- name: Tar dist (Unix)
if: contains(fromJSON('["linux-arm64", "linux-x64", "macos-arm64", "macos-x64"]'), matrix.target)
run: |
tar czf ${{ matrix.target }}.${{ env._EXT }} -C ./dist/ .
cp ${{ matrix.target }}.${{ env._EXT }} qob_${{ env.VERSION }}_${{ matrix.target }}.${{ env._EXT }}
- name: Uploading...
if: github.ref == 'refs/heads/master'
uses: softprops/action-gh-release@v2.0.8
with:
tag_name: ${{ env.VERSION }}
token: ${{ secrets.PAT }}
prerelease: true
files: qob_${{ env.VERSION }}_${{ matrix.target }}.${{ env._EXT }}
#### Prepare to push to `binaries` repository!
- name: Move tar to HOME
run: mv ${{ matrix.target }}.${{ env._EXT }} ~/
- name: Checkout binaries repository
uses: actions/checkout@v4
with:
repository: ${{ env.REPO_BIN }}
persist-credentials: false
fetch-depth: 0
- name: Clean up previous binaires
continue-on-error: true
run: rm -rf qob/${{ matrix.target }}.${{ env._EXT }}
- name: Move binaires to repository
run: mv ~/${{ matrix.target }}.${{ env._EXT }} ./
- name: Set git config
run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: Commit
continue-on-error: true
run: |
git pull
git add .
git commit -m "Update binairs ${{ matrix.target }}.${{ env._EXT }}"
- name: Push
if: github.ref == 'refs/heads/master'
uses: jcs090218/github-push-action@master
with:
repository: ${{ env.REPO_BIN }}
github_token: ${{ secrets.PAT }}
branch: master
rebase: true
retry: 7
build-windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
target:
- win-arm64
- win-x64
steps:
- uses: actions/checkout@v4
- name: Setup SBCL
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install sbcl --version=${{ env.LISP_VER }}
- name: Install Quicklisp
run: |
make install-ql
- name: Building...
run: |
make build
- name: Prepare content...
run: |
mkdir dist
mv bin/qob.exe dist
mv lisp dist
mv LICENSE dist
mv README.md dist
- name: Setup environment (Windows)
run: |
echo "_EXT=zip" >> $GITHUB_ENV
- name: Zipping dist (Windows)
working-directory: dist
run: |
zip -r ${{ matrix.target }}.${{ env._EXT }} .
mv ${{ matrix.target }}.${{ env._EXT }} ../
cd ..
cp ${{ matrix.target }}.${{ env._EXT }} qob_${{ env.VERSION }}_${{ matrix.target }}.${{ env._EXT }}
- name: Uploading...
if: github.ref == 'refs/heads/master'
uses: softprops/action-gh-release@v2.0.8
with:
tag_name: ${{ env.VERSION }}
token: ${{ secrets.PAT }}
prerelease: true
files: qob_${{ env.VERSION }}_${{ matrix.target }}.${{ env._EXT }}
#### Prepare to push to `binaries` repository!
- name: Move tar to HOME
run: mv ${{ matrix.target }}.${{ env._EXT }} ~/
- name: Checkout binaries repository
uses: actions/checkout@v4
with:
repository: ${{ env.REPO_BIN }}
persist-credentials: false
fetch-depth: 0
- name: Clean up previous binaires
continue-on-error: true
run: rm -rf qob/${{ matrix.target }}.${{ env._EXT }}
- name: Move binaires to repository
run: mv ~/${{ matrix.target }}.${{ env._EXT }} ./
- name: Set git config
run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: Commit
continue-on-error: true
run: |
git pull
git add .
git commit -m "Update binairs ${{ matrix.target }}.${{ env._EXT }}"
- name: Push
if: github.ref == 'refs/heads/master'
uses: jcs090218/github-push-action@master
with:
repository: ${{ env.REPO_BIN }}
github_token: ${{ secrets.PAT }}
branch: master
rebase: true
retry: 7