-
Notifications
You must be signed in to change notification settings - Fork 0
200 lines (159 loc) · 5.03 KB
/
ci.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
name: "ci"
on:
workflow_dispatch:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU binfmt for cross compiling
uses: docker/setup-qemu-action@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v16
with:
extra-conf: |
extra-platforms = aarch64-linux x86_64-linux
- name: Cache Nix store
uses: DeterminateSystems/magic-nix-cache-action@v8
- name: Check flake
run: nix flake check --accept-flake-config
build:
runs-on: ubuntu-latest
needs:
- test
strategy:
matrix:
system:
- "aarch64-linux"
- "x86_64-linux"
package:
- "server"
- "client"
- "docs"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU binfmt for building aarch64
uses: docker/setup-qemu-action@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v16
with:
extra-conf: |
extra-platforms = aarch64-linux x86_64-linux
- name: Cache Nix store
uses: DeterminateSystems/magic-nix-cache-action@v8
- name: Build package
run: nix build --accept-flake-config .#packages.${{ matrix.system }}.${{ matrix.package }}
bundle:
runs-on: ubuntu-latest
needs:
- build
strategy:
matrix:
system:
- "aarch64-linux"
- "x86_64-linux"
bundler:
- name: "debian"
path: "github:viperML/bundlers#deb"
extension: "deb"
- name: "pacman"
path: "github:viperML/bundlers#pacman"
extension: "tar.xz"
- name: "rpm"
path: "github:viperML/bundlers#rpm"
extension: "rpm"
- name: "docker"
path: "github:viperML/bundlers#docker"
extension: "tar.gz"
- name: "appimage"
path: "github:ralismark/nix-appimage"
extension: "AppImage"
package:
- "server"
- "client"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU binfmt for cross compiling
uses: docker/setup-qemu-action@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v16
with:
extra-conf: |
extra-platforms = aarch64-linux x86_64-linux
- name: Cache Nix store
uses: DeterminateSystems/magic-nix-cache-action@v8
- name: Build ${{ matrix.bundler.name }} package for ${{ matrix.system }}
run: >-
nix bundle
--bundler ${{ matrix.bundler.path }}
--accept-flake-config
--out-link result
.#packages.${{ matrix.system }}.${{ matrix.package }}
- name: Prepare Bundle for upload
if: startsWith(github.ref, 'refs/tags/v')
run: >-
cp
--no-preserve=mode,ownership
$(find -L result -type f -print -quit)
${{ matrix.package }}-${{ github.ref_name }}-${{ matrix.bundler.name }}-${{ matrix.system }}.${{ matrix.bundler.extension }}
- name: Upload bundle
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.package }}-${{ github.ref_name }}-${{ matrix.bundler.name }}-${{ matrix.system }}
path: ${{ matrix.package }}-${{ github.ref_name }}-${{ matrix.bundler.name }}-${{ matrix.system }}.${{ matrix.bundler.extension }}
deploy-pages:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
needs:
- build
permissions:
contents: read
actions: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v16
- name: Cache Nix store
uses: DeterminateSystems/magic-nix-cache-action@v8
- name: Build package
run: nix build --accept-flake-config .#docs
- name: Prepare assets for upload
run: cp -r --dereference --no-preserve=mode,ownership result/ public/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: public/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
release:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
needs:
- bundle
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: bundles
merge-multiple: true
- name: Create release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
bundles/*