-
Notifications
You must be signed in to change notification settings - Fork 2
81 lines (65 loc) · 1.76 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
name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'gradle'
- name: Cache Kotlin Native
id: cache-konan
uses: actions/cache@v4
with:
path: ~/.konan
key: ${{ runner.os }}-build-konan-${{ hashFiles('*gradle.*') }}
restore-keys: |
${{ runner.os }}-build-konan-
- name: Install aarch64-linux-gnu-gcc
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Build binaries and assemble distribution
run: make dist
- name: Upload platform distribution
uses: actions/upload-artifact@v4
with:
name: jaunch-${{ matrix.os }}
path: jaunch.tar.gz
dist:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache UPX
id: cache-upx
uses: actions/cache@v4
with:
path: .upx
key: ${{ runner.os }}-dist-upx
- name: Download platform distributions
uses: actions/download-artifact@v4
- name: Merge platform distributions
run: |
for tar in jaunch-*/jaunch.tar*; do tar xf "$tar"; done
- name: Pack binaries and assemble distribution
run: |
bash bin/pack.sh
bash -c "tar czf jaunch.tar.gz dist"
- name: Upload merged distribution
uses: actions/upload-artifact@v4
with:
name: jaunch
path: jaunch.tar.gz