-
Notifications
You must be signed in to change notification settings - Fork 18
251 lines (214 loc) · 7.58 KB
/
auto-release.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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
name: Auto Release
on:
push:
tags:
- "v*"
branches:
- "master"
workflow_dispatch:
inputs:
tags:
description: The tags to be released. If not give, will use prerelease.
required: false
type: string
jobs:
gen_version:
name: generate version
runs-on: ubuntu-latest
outputs:
version: ${{ steps.generated-tag.outputs.tag }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get latest tag
id: get-latest-tag
run: |
echo "tag=`gh release list -L 1 | cut -f 1`" >> $GITHUB_OUTPUT
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Bump version
id: generated-tag
uses: actions/github-script@v6
with:
script: |
if (context.ref.startsWith("refs/tags/")) {
let tag = context.ref.replace("refs/tags/", "");
core.setOutput('tag', tag);
console.log(`This event pushed a tag ${tag}, return directly.`)
return
}
if ("${{ github.event.inputs.tags }}") {
let tag = "${{ github.event.inputs.tags }}";
core.setOutput('tag', tag);
console.log(`This event triggered by workflow_dispatch with a tag ${tag}, return directly.`)
return
}
console.log('Use default tag "prerelease".')
core.setOutput('tag', 'prerelease');
build_macos:
needs: gen_version
name: build macos version binary
timeout-minutes: 60
runs-on: macos-latest
strategy:
matrix:
arch:
- x86_64
- aarch64
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get target
id: target
run: echo 'target=${{ matrix.arch }}-apple-darwin' >> $GITHUB_OUTPUT
- name: Add target
run: |
rustup target add ${{ steps.target.outputs.target }}
- name: Setup protoc
uses: arduino/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup rust toolchain
run: |
rustup show
# If you need to reset the cache version, increment the number after `v`
- uses: Swatinem/rust-cache@v2
with:
shared-key: auto-release-${{ steps.target.outputs.target }}-v1
- name: Build
run: |
cargo build --features node --no-default-features --release --target ${{ steps.target.outputs.target }}
zip -j rings-${{ needs.gen_version.outputs.version }}-${{ steps.target.outputs.target }}.zip ./target/${{ steps.target.outputs.target }}/release/rings
- uses: actions/upload-artifact@v3
name: Upload artifacts
with:
name: rings-${{ needs.gen_version.outputs.version }}-${{ steps.target.outputs.target }}
path: rings-${{ needs.gen_version.outputs.version }}-${{ steps.target.outputs.target }}.zip
retention-days: 1
build_linux:
needs: gen_version
name: build linux version binary
timeout-minutes: 60
runs-on: "ubuntu-latest"
strategy:
matrix:
arch:
- x86_64
platform:
- musl
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get target
id: target
run: echo 'target=${{ matrix.arch }}-unknown-linux-${{ matrix.platform }}' >> $GITHUB_OUTPUT
- name: Add target
run: |
rustup target add ${{ steps.target.outputs.target }}
- name: Setup protoc
uses: arduino/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: alias compiler
run: |
sudo ln -s /bin/g++ /bin/musl-g++
- name: Setup rust toolchain
run: |
rustup show
- name: Install musl-tools
if: matrix.platform == 'musl'
run: |
set -ex
sudo apt-get update
sudo apt-get install -y musl-tools
# If you need to reset the cache version, increment the number after `v`
- uses: Swatinem/rust-cache@v2
with:
shared-key: auto-release-${{ steps.target.outputs.target }}-v1
- name: Build
run: |
cargo build --features node --no-default-features --release --target ${{ steps.target.outputs.target }}
zip -j rings-${{ needs.gen_version.outputs.version }}-${{ steps.target.outputs.target }}.zip ./target/${{ steps.target.outputs.target }}/release/rings
- uses: actions/upload-artifact@v3
name: Upload artifacts
with:
name: rings-${{ needs.gen_version.outputs.version }}-${{ steps.target.outputs.target }}
path: rings-${{ needs.gen_version.outputs.version }}-${{ steps.target.outputs.target }}.zip
retention-days: 1
build_browser:
needs: gen_version
name: build browser version binary
timeout-minutes: 60
runs-on: "ubuntu-latest"
strategy:
matrix:
arch:
- wasm32
platform:
- unknown
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get target
id: target
run: echo 'target=${{ matrix.arch }}-unknown-${{ matrix.platform }}' >> $GITHUB_OUTPUT
- name: Add target
run: |
rustup target add ${{ steps.target.outputs.target }}
- uses: jetli/[email protected]
with:
version: "0.2.89"
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Setup protoc
uses: arduino/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup rust toolchain
run: |
rustup show
# If you need to reset the cache version, increment the number after `v`
- uses: Swatinem/rust-cache@v2
with:
shared-key: auto-release-${{ steps.target.outputs.target }}-v1
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Build
run: |
npm install && npm pack
mv ringsnetwork-rings-node-*.tgz rings-${{ needs.gen_version.outputs.version }}-${{ steps.target.outputs.target }}.tgz
- uses: actions/upload-artifact@v3
name: Upload artifacts
with:
name: rings-${{ needs.gen_version.outputs.version }}-${{ steps.target.outputs.target }}
path: rings-${{ needs.gen_version.outputs.version }}-${{ steps.target.outputs.target }}.tgz
retention-days: 1
release:
needs: [gen_version, build_macos, build_linux, build_browser]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/download-artifact@v2
- name: Display fetched artifacts
run: ls -R
- uses: "marvinpinto/action-automatic-releases@latest"
name: Emit a Github Release
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: ${{ needs.gen_version.outputs.version }}
prerelease: ${{ needs.gen_version.outputs.version == 'prerelease' }}
title: ${{ needs.gen_version.outputs.version }}
files: |
LICENSE
rings-${{ needs.gen_version.outputs.version }}-x86_64-unknown-linux-musl/*.zip
rings-${{ needs.gen_version.outputs.version }}-x86_64-apple-darwin/*.zip
rings-${{ needs.gen_version.outputs.version }}-aarch64-apple-darwin/*.zip
rings-${{ needs.gen_version.outputs.version }}-wasm32-unknown-unknown/*.tgz