-
Notifications
You must be signed in to change notification settings - Fork 0
271 lines (231 loc) · 6.79 KB
/
ci.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
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
name: CI
on:
push:
branches: [master]
jobs:
Consistency:
name: Consistency
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Haskell Stack
uses: haskell/actions/setup@v1
with:
enable-stack: true
stack-no-global: true
stack-version: latest
- name: Version is increasing
run: |
HEAD_VERSION=$(cat runhs.cabal | grep '^version' | cut -d ':' -f 2 | tr -d '[:space:]')
RELEASE_VERSION=$(git describe --tags | cut -d'-' -f1 | cut -d'v' -f2)
[[ $HEAD_VERSION > $RELEASE_VERSION ]]
- name: No cabal package format warnings
run: |
WARNINGS=$(stack sdist . 2>&1 | tail -n 1)
[[ $WARNINGS == "Checking package 'runhs' for common mistakes" ]]
Compat:
name: Compat
needs:
- Consistency
runs-on: ubuntu-latest
strategy:
matrix:
resolver:
- lts-20
- lts-19
- lts-18
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Haskell Stack
uses: haskell/actions/setup@v1
with:
enable-stack: true
stack-no-global: true
stack-version: latest
- name: Build
run: |
stack clean
stack build --resolver ${{ matrix.resolver }}
TEST_RESOLVER=${{ matrix.resolver }} stack test --resolver ${{ matrix.resolver }}
Linux:
name: Linux
needs:
- Consistency
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Haskell Stack
uses: haskell/actions/setup@v1
with:
enable-stack: true
stack-no-global: true
stack-version: latest
- name: Build
run: |
stack clean
stack build --resolver nightly --ghc-options="-split-sections -O2"
stack test --resolver nightly --ghc-options="-split-sections -O2"
- name: Copy artifact
run: |
cp $(stack exec --resolver nightly which runhs) runhs
- name: Compress artifact
uses: svenstaro/upx-action@v2
with:
file: runhs
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: linux
path: runhs
Mac:
name: Mac
needs:
- Consistency
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Haskell Stack
uses: haskell/actions/setup@v1
with:
enable-stack: true
stack-no-global: true
stack-version: latest
- name: Build
run: |
stack clean
stack build --resolver nightly --ghc-options="-O2"
stack test --resolver nightly --ghc-options="-O2"
- name: Copy artifact
run: |
cp $(stack exec --resolver nightly which runhs) runhs
- name: Compress artifact
uses: svenstaro/upx-action@v2
with:
file: runhs
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: mac
path: runhs
Windows:
name: Windows
needs:
- Consistency
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Haskell Stack
uses: haskell/actions/setup@v1
with:
enable-stack: true
stack-no-global: true
stack-version: latest
- name: Build
run: |
stack clean
stack build --resolver nightly --ghc-options="-split-sections -O2"
stack test --resolver nightly --ghc-options="-split-sections -O2"
- name: Copy artifact
run: |
copy (stack exec --resolver nightly where runhs) runhs.exe
- name: Compress artifact
uses: svenstaro/upx-action@v2
with:
file: runhs.exe
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: windows
path: runhs.exe
Release:
name: Release
needs:
- Compat
- Linux
- Mac
- Windows
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Read Version
id: read_version
run: |
echo "##[set-output name=version;]$(cat runhs.cabal | grep '^version' | cut -d ':' -f 2 | tr -d '[:space:]')"
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.read_version.outputs.version }}
release_name: Release v${{ steps.read_version.outputs.version }}
draft: false
prerelease: false
- name: Download Linux artifact
uses: actions/download-artifact@v2
with:
name: linux
- name: Compress Linux artifact
run: |
chmod +x runhs
zip linux.zip runhs
- name: Download Mac artifact
uses: actions/download-artifact@v2
with:
name: mac
- name: Compress Mac artifact
run: |
chmod +x runhs
zip mac.zip runhs
- name: Download Windows artifact
uses: actions/download-artifact@v2
with:
name: windows
- name: Compress Windows artifact
run: |
zip windows.zip runhs.exe
- name: Attach Linux artifact
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: linux.zip
asset_name: linux.zip
asset_content_type: application/zip
- name: Attach Mac artifact
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: mac.zip
asset_name: mac.zip
asset_content_type: application/zip
- name: Attach Windows artifact
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: windows.zip
asset_name: windows.zip
asset_content_type: application/zip
- name: Setup Haskell Stack
uses: haskell/actions/setup@v1
with:
enable-stack: true
stack-no-global: true
stack-version: latest
- name: Publish to Hackage
env:
HACKAGE_USERNAME: ${{ secrets.hackage_username }}
HACKAGE_PASSWORD: ${{ secrets.hackage_password }}
run: |
echo n | stack upload .