-
Notifications
You must be signed in to change notification settings - Fork 56
302 lines (252 loc) · 9.41 KB
/
master.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
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
name: Release Tag
on:
push:
tags:
- '*'
env:
CARGO_TERM_COLOR: always
jobs:
#?####################################################################################################?#
#? ?#
#? Build Helper Images ?#
#? ?#
#?####################################################################################################?#
aarch64:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Building Docker Image
uses: ./.github/actions/build-helper
with:
imagename: aarch64-unknown-linux-gnu
armv7:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Building Docker Image
uses: ./.github/actions/build-helper
with:
imagename: armv7-unknown-linux-gnueabihf
x86_64:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Building Docker Image
uses: ./.github/actions/build-helper
with:
imagename: x86_64-unknown-linux-gnu
macos_helper:
runs-on: ubuntu-latest
steps:
- run: exit 0
windows_helper:
runs-on: ubuntu-latest
steps:
- run: exit 0
#?####################################################################################################?#
#? ?#
#? Build Releases ?#
#? ?#
#?####################################################################################################?#
Build_aarch64:
needs: [aarch64]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Building aarch64 Binary
uses: ./.github/actions/build-linux
with:
target: aarch64-unknown-linux-gnu
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: aarch64-release
path: |
target/aarch64-unknown-linux-gnu/release/witnet
target/aarch64-unknown-linux-gnu/release/witnet_toolkit
Build_armv7:
needs: [armv7]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Building armv7 Binary
uses: ./.github/actions/build-linux
with:
target: armv7-unknown-linux-gnueabihf
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: armv7-release
path: |
target/armv7-unknown-linux-gnueabihf/release/witnet
target/armv7-unknown-linux-gnueabihf/release/witnet_toolkit
Build_x86_64:
needs: [x86_64]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Building x86_64 Binary
uses: ./.github/actions/build-linux
with:
target: x86_64-unknown-linux-gnu
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: x86_64-release
path: |
target/x86_64-unknown-linux-gnu/release/witnet
target/x86_64-unknown-linux-gnu/release/witnet_toolkit
Build_macOs:
needs: [macos_helper]
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Protobuf
run: brew install protobuf
- name: Building Macos Binary
run: MACOSX_DEPLOYMENT_TARGET=10.14 OPENSSL_STATIC=1 OPENSSL_DIR="/usr/local/opt/openssl" cargo build --release -p witnet -p witnet_toolkit
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: macos-release
path: |
target/release/witnet
target/release/witnet_toolkit
Build_windows:
needs: [windows_helper]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Protobuf
run: |
Invoke-WebRequest -Uri https://github.com/protocolbuffers/protobuf/releases/download/v21.1/protoc-21.1-win64.zip -OutFile "protoc.zip"
Expand-Archive -Path protoc.zip -DestinationPath C:\protoc -force
echo "C:\protoc\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
# TODO: Needs to be optimized takes wayyyy too long
- name: Install openssl static
run: |
vcpkg.exe install openssl:x64-windows-static
vcpkg.exe integrate install
- name: Build Windows
run: |
Set-Variable -Name "OPENSSL_STATIC" -Value "1"
Set-Variable -Name "OPENSSL_DIR" -Value "C:\Program Files\vcpkg\installed\x64-windows-static"
cargo build --release -p witnet -p witnet_toolkit
- name: Confirm openssl compiled statically
run: LDD.exe target\release\witnet.exe | Select-String -Pattern "ssl"
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: windows-release
path: |
target\release\witnet.exe
target\release\witnet_toolkit.exe
#?####################################################################################################?#
#? ?#
#? Sign & Publish ?#
#? ?#
#?####################################################################################################?#
Sign:
needs: [Build_windows, Build_macOs, Build_x86_64, Build_armv7, Build_aarch64]
runs-on: ubuntu-latest
environment: tags
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Downloading Artifacts
uses: ./.github/actions/download-releases
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Trust GPG key
run: |
gpg --no-tty --command-fd 0 --edit-key info@witnet.foundation << EOTRUST
trust
5
y
quit
EOTRUST
- name: Sign Hashes
run: |
cd release
gpg --output SHA256SUMS.asc --default-key info@witnet.foundation --detach-sig --clearsign SHA256SUMS && rm SHA256SUMS
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: final-release
path: release/
Release:
needs: [Sign]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: final-release
path: release/
- name: Inject Tag
run: |
TAG=${{ github.ref_name }}
sed -i "s/LATEST_VERSION/$TAG/g" RELEASE.md
- name: Check Pre-Release
run: |
TAG=${{ github.ref_name }}
if [[ "$TAG" =~ - ]]; then
echo "prerelease=true" >> $GITHUB_ENV
else
echo "prerelease=false" >> $GITHUB_ENV
fi
- name: Publish Github Release
uses: ncipollo/release-action@v1
with:
name: "Witnet-rust ${{ github.ref_name }}"
artifacts: "./release/*"
bodyFile: "RELEASE.md"
artifactErrorsFailBuild: true
prerelease: ${{ env.prerelease }}
Publish:
needs: [Release]
runs-on: ubuntu-latest
environment: tags
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Container Registry
uses: docker/#-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build Base
run: |
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker buildx create --name multiarch --driver docker-container --use
docker buildx inspect --bootstrap
# Build Docker images (Latest & TAG)
- name: Build TAG
run: docker buildx build -f docker/witnet-rust/Dockerfile --progress=plain --build-arg WITNET_VERSION=${{github.ref_name}} --platform linux/amd64,linux/arm64,linux/arm/v7 --tag witnet/witnet-rust:${{github.ref_name}} docker/witnet-rust --push --no-cache
- name: Check Pre-release
run: |
TAG=${{ github.ref_name }}
if [[ "$TAG" =~ - ]]; then
echo "prerelease=true" >> $GITHUB_ENV
else
echo "prerelease=false" >> $GITHUB_ENV
fi
- name: Build Latest if not Pre-Release
run: docker buildx build -f docker/witnet-rust/Dockerfile --progress=plain --build-arg WITNET_VERSION=latest --platform linux/amd64,linux/arm64,linux/arm/v7 --tag witnet/witnet-rust:latest docker/witnet-rust --push --no-cache
if: env.prerelease == 'false'