-
Notifications
You must be signed in to change notification settings - Fork 218
413 lines (392 loc) · 13.1 KB
/
release.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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
# This workflow runs on tags / releases. It also runs on nightly builds without
# publishing anything, in order to test as much of the build works as possible.
#
# We indicate whether it should publish, vs. just build, by checking whether
# `github.event_name == 'release'` . (An alternative would be to have an input
# which is passed in by the calling workflow.)
name: release
on:
release:
types: [released]
workflow_call:
workflow_dispatch:
jobs:
brew-dispatcher:
name: Release on homebrew-prql
runs-on: ubuntu-latest
if: github.event_name == 'release'
steps:
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.PRQL_BOT_GITHUB_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'prql',
repo: 'homebrew-prql',
workflow_id: 'update.yaml',
ref: 'main',
inputs: {
version: '${{ github.ref }}',
URL: 'https://github.com/PRQL/prql/archive/${{ github.ref }}.tar.gz'
}
})
build-prqlc:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
- os: ubuntu-latest
target: aarch64-unknown-linux-musl
- os: macos-14
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
permissions:
contents: write
steps:
- name: 📂 Checkout code
uses: actions/checkout@v4
- uses: ./.github/actions/build-prqlc
id: build-artifact
with:
target: ${{ matrix.target }}
profile: release
features: cli
- name: Upload release artifact
if: github.event_name == 'release'
uses: softprops/action-gh-release@v2
with:
append_body: true
files: ${{ steps.build-artifact.outputs.artifact-name }}
- name: test the CLI works
# TODO: Add for Windows too (but will require unzipping rather than
# un-taring)
#
# Currently filtering by x86, since that's the same as those not
# cross-compiled. But we'll have to refine this in the future.
if:
${{ contains(matrix.target, 'x86') && matrix.target !=
'x86_64-pc-windows-msvc' }}
run: |
# `prqlc` is an existing path at the root
mkdir -p temp_path
tar xzf ${{ steps.build-artifact.outputs.artifact-name }} -C temp_path
./temp_path/prqlc --help
build-prqlc-c:
# Mostly a copy/paste of `build-prqlc`.
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
- os: ubuntu-latest
target: aarch64-unknown-linux-musl
- os: macos-14
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
permissions:
contents: write
steps:
- name: 📂 Checkout code
uses: actions/checkout@v4
- uses: ./.github/actions/build-prqlc-c
id: build-artifact
with:
target: ${{ matrix.target }}
profile: release
- name: Upload release artifact
if: github.event_name == 'release'
uses: softprops/action-gh-release@v2
with:
append_body: true
files: ${{ steps.build-artifact.outputs.artifact-name }}
publish-winget:
runs-on: ubuntu-latest
needs: build-prqlc
if: github.event_name == 'release'
steps:
- name: publish
uses: vedantmgoyal2009/winget-releaser@v2
with:
identifier: PRQL.prqlc
version: ${{ github.ref_name }}
installers-regex: '^prqlc-.*-windows-.*\.zip$'
token: ${{ secrets.PRQL_BOT_GITHUB_TOKEN }}
fork-user: prql-bot
build-deb-package:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- x86_64-unknown-linux-musl
- aarch64-unknown-linux-musl
needs: build-prqlc
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
with:
name: prqlc-${{ matrix.target }}-release
- name: Copy files into .deb package
run: |
tar -xf prqlc-*.tar.gz
mkdir -p .debpkg/usr/bin
mv prqlc .debpkg/usr/bin/prqlc
chmod +x .debpkg/usr/bin/prqlc
- name: Set arch variable
run: |
if [ "${{ matrix.target }}" == "aarch64-unknown-linux-musl" ]; then
echo "package_arch=arm64" >> "$GITHUB_ENV"
elif [ "${{ matrix.target }}" == "x86_64-unknown-linux-musl" ]; then
echo "package_arch=amd64" >> "$GITHUB_ENV"
else
echo "::error::Unknown architecture: ${{ matrix.target }}"
exit 1
fi
- name: 📦 Build .deb package
uses: jiro4989/build-deb-action@v3
with:
package: prqlc
package_root: .debpkg
maintainer: The PRQL Project
version: ${{ github.event_name == 'release' && github.ref_name || 0 }}
arch: ${{ env.package_arch }}
desc: >
prqlc is the CLI for the PRQL compiler. It compiles PRQL to SQL, and
offers various diagnostics.
PRQL is a modern language for transforming data — a simple,
powerful, pipelined SQL replacement.
- uses: actions/upload-artifact@v4
with:
name: deb-${{ matrix.target }}
path: ./*.deb
- name: Release
if: github.event_name == 'release'
uses: softprops/action-gh-release@v2
with:
files: prqlc_*.deb
build-rpm-package:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- x86_64-unknown-linux-musl
#- aarch64-unknown-linux-musl # https://github.com/jiro4989/build-rpm-action/issues/6
needs: build-prqlc
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
with:
name: prqlc-${{ matrix.target }}-release
- name: Copy files into .rpm package
run: |
tar -xf prqlc-*.tar.gz
mkdir -p .rpmpkg/usr/bin
mv prqlc .rpmpkg/usr/bin/prqlc
chmod +x .rpmpkg/usr/bin/prqlc
- name: Set variables
run: |
if [ "${{ matrix.target }}" == "aarch64-unknown-linux-musl" ]; then
echo "package_arch=aarch64" >> "$GITHUB_ENV"
elif [ "${{ matrix.target }}" == "x86_64-unknown-linux-musl" ]; then
echo "package_arch=x86_64" >> "$GITHUB_ENV"
else
echo "::error::Unknown architecture: ${{ matrix.target }}"
fi
- name: 📦 Build .rpm package
uses: jiro4989/build-rpm-action@v2
with:
summary: CLI for PRQL, a modern language for transforming data
package: prqlc
package_root: .rpmpkg
maintainer: The PRQL Project
vendor: The PRQL Project
version: ${{ github.event_name == 'release' && github.ref_name || 0 }}
arch: ${{ env.package_arch }}
desc: >
prqlc is the CLI for the PRQL compiler. It compiles PRQL to SQL, and
offers various diagnostics.
PRQL is a modern language for transforming data — a simple,
powerful, pipelined SQL replacement.
license: Apache-2.0
- uses: actions/upload-artifact@v4
with:
name: artifact-rpm
path: |
./*.rpm
!./*-debuginfo-*.rpm
- run: rm prqlc-debuginfo-*.rpm
- name: Release
if: github.event_name == 'release'
uses: softprops/action-gh-release@v2
with:
files: prqlc-*.rpm
build-and-publish-snap:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'release' }}
steps:
- name: 📂 Checkout code
uses: actions/checkout@v4
- name: Move Snap to project root directory
run: cp -r prqlc/packages/snap/ .
- name: 📦 Build Snap
id: build
uses: snapcore/action-build@v1
- name: 🆙 Publish Snap
if: github.event_name == 'release'
uses: snapcore/action-publish@v1
env:
SNAPCRAFT_STORE_CREDENTIALS:
${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
with:
snap: ${{ steps.build.outputs.snap }}
release: edge
build-python-wheels:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
package:
- prqlc-python
- lutra-python
target: [x86_64]
include:
# MacOS with universal builds
- os: macos-14
package: prqlc-python
target: universal2-apple-darwin
- os: macos-14
package: lutra-python
target: universal2-apple-darwin
# Also produce more targets for ubuntu:
- os: ubuntu-latest
package: prqlc-python
target: aarch64
- os: ubuntu-latest
package: prqlc-python
target: source
- os: ubuntu-latest
package: lutra-python
target: aarch64
- os: ubuntu-latest
package: lutra-python
target: source
steps:
- name: 📂 Checkout code
uses: actions/checkout@v4
- uses: ./.github/actions/build-python
with:
target: ${{ matrix.target }}
package: ${{ matrix.package }}
profile: release
publish-python:
runs-on: ubuntu-latest
needs: [build-python-wheels]
if: github.event_name == 'release'
strategy:
matrix:
package:
- prqlc-python
- lutra-python
steps:
- uses: actions/download-artifact@v4
with:
# `*` covers target & OS
pattern: ${{ matrix.package }}-*-release
merge-multiple: true
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
command: upload
args: --skip-existing *
publish-js:
runs-on: ubuntu-latest
steps:
- name: 📂 Checkout code
uses: actions/checkout@v4
- uses: baptiste0928/cargo-install@v3
with:
crate: wasm-pack
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: ./.github/workflows/scripts/set_version.sh
- name: 💰 Cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ env.version }}
# Share key with the `build-web` job
shared-key: web
save-if: false
# This is only required in order to have `cross-env` installed, since `npx
# cross-env` doesn't seem to work in CI (https://github.com/PRQL/prql/pull/3728)
- run: npm install
working-directory: prqlc/bindings/js/
- run:
npm publish ${{ (github.event_name != 'release') && '--dry-run' || ''
}}
working-directory: prqlc/bindings/js/
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
publish-to-cargo:
runs-on: ubuntu-latest
steps:
- name: 📂 Checkout code
uses: actions/checkout@v4
- uses: baptiste0928/cargo-install@v3
with:
crate: cargo-release
# Currently, we can only check prqlc-ast which is not dependent other local crates with --dry-run.
# https://github.com/crate-ci/cargo-release/issues/691
# --no-verify is required to prevent build.
- run:
cargo release publish --no-confirm ${{ github.event_name == 'release'
&& '--execute' || '--no-verify --package prqlc-ast'}}
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
# Requires another pass: https://github.com/PRQL/prql/issues/850
# publish-prql-java:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Install Java and Maven
# uses: actions/setup-java@v3
# with:
# java-version: 8
# - name: Release Maven package
# uses: samuelmeuli/action-maven-publish@v1
# with:
# gpg_private_key: ${{ secrets.gpg_private_key }}
# gpg_passphrase: ${{ secrets.gpg_passphrase }}
# nexus_username: ${{ secrets.nexus_username }}
# nexus_password: ${{ secrets.nexus_password }}
# directory: prql-java/java/
push-web-branch:
runs-on: ubuntu-latest
if: github.event_name == 'release'
steps:
- name: 📂 Checkout code
uses: actions/checkout@v4
- run: git push origin HEAD:web --force
push-devcontainer:
if: github.event_name == 'release'
uses: ./.github/workflows/build-devcontainer.yaml
with:
# TOOD: I think having this as a bool is OK, but check a recent release
# from 0.10.0 and confirm that it is indeed pushing the image.
push: true