-
Notifications
You must be signed in to change notification settings - Fork 123
163 lines (128 loc) · 4.47 KB
/
build-staging.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
name: Build - Staging
on:
workflow_dispatch:
env:
MAKE_DEBUG: 0
GIT_VERSION: 1
jobs:
linux-x64:
runs-on: ubuntu-latest
env:
TARGET: x86_64-pc-linux-gnu
steps:
- uses: actions/checkout@v4
- name: Populate environment
run: ./make.sh ci-export-vars
- name: Build and package
run: ./make.sh docker-release
- name: Publish artifacts
uses: actions/upload-artifact@v3
with:
name: defichain-${{ env.BUILD_VERSION }}-x86_64-pc-linux-gnu
path: ./build/defichain-${{ env.BUILD_VERSION }}-x86_64-pc-linux-gnu.tar.gz
linux-aarch64:
runs-on: ubuntu-latest
env:
TARGET: aarch64-linux-gnu
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Populate environment
run: ./make.sh ci-export-vars
- name: Build and package
run: ./make.sh docker-release
- name: Publish artifact - aarch64-linux-gnu
uses: actions/upload-artifact@v3
with:
name: defichain-${{ env.BUILD_VERSION }}-aarch64-linux-gnu
path: ./build/defichain-${{ env.BUILD_VERSION }}-aarch64-linux-gnu.tar.gz
win-x64:
runs-on: ubuntu-latest
env:
TARGET: x86_64-w64-mingw32
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Populate environment
run: ./make.sh ci-export-vars
- name: Build and package
run: ./make.sh docker-release
- name: Publish artifact - x86_64-w64-mingw32
uses: actions/upload-artifact@v3
with:
name: defichain-${{ env.BUILD_VERSION }}-x86_64-w64-mingw32
path: ./build/defichain-${{ env.BUILD_VERSION }}-x86_64-w64-mingw32.tar.gz
osx-x64:
runs-on: ubuntu-latest
env:
TARGET: x86_64-apple-darwin
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Populate environment
run: ./make.sh ci-export-vars
- name: Build and package
run: ./make.sh docker-release
- name: Publish artifact - x86_64-apple-darwin
uses: actions/upload-artifact@v3
with:
name: defichain-${{ env.BUILD_VERSION }}-x86_64-apple-darwin
path: ./build/defichain-${{ env.BUILD_VERSION }}-x86_64-apple-darwin.tar.gz
osx-aarch64:
runs-on: ubuntu-latest
env:
TARGET: aarch64-apple-darwin
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Populate environment
run: ./make.sh ci-export-vars
- name: Build and package
run: ./make.sh docker-release
- name: Publish artifact - aarch64-apple-darwin
uses: actions/upload-artifact@v3
with:
name: defichain-${{ env.BUILD_VERSION }}-aarch64-apple-darwin
path: ./build/defichain-${{ env.BUILD_VERSION }}-aarch64-apple-darwin.tar.gz
# We keep the flow as similar as close to release flow as possible
# to validate change before it gets into release, even though
# these don't create end artifacts to use
stage-release:
needs:
- linux-x64
- linux-aarch64
- win-x64
- osx-x64
- osx-aarch64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Populate environment
run: ./make.sh ci-export-vars
- name: Cleanup work dir
run: rm -rf *
- name: Get artifacts
uses: actions/download-artifact@v3
- name: zip package for win-x64
run: |
set -e; ver=${{ env.BUILD_VERSION }}
cd defichain-${ver}-x86_64-w64-mingw32
tar xzf defichain-${ver}-x86_64-w64-mingw32.tar.gz
zip -r "defichain-${ver}-x86_64-w64-mingw32.zip" defichain-${ver}/
- name: Generate SHA256 checksum
run: |
set -e; ver=${{ env.BUILD_VERSION }}
(cd ./defichain-${ver}-x86_64-pc-linux-gnu
sha256sum ./defichain-${ver}-x86_64-pc-linux-gnu.tar.gz > ./defichain-${ver}-x86_64-pc-linux-gnu.tar.gz.SHA256)
(cd ./defichain-${ver}-aarch64-linux-gnu
sha256sum ./defichain-${ver}-aarch64-linux-gnu.tar.gz > ./defichain-${ver}-aarch64-linux-gnu.tar.gz.SHA256)
(cd ./defichain-${ver}-x86_64-w64-mingw32
sha256sum ./defichain-${ver}-x86_64-w64-mingw32.zip > ./defichain-${ver}-x86_64-w64-mingw32.zip.SHA256)
(cd ./defichain-${ver}-x86_64-apple-darwin
sha256sum ./defichain-${ver}-x86_64-apple-darwin.tar.gz > ././defichain-${ver}-x86_64-apple-darwin.tar.gz.SHA256)
(cd ./defichain-${ver}-aarch64-apple-darwin
sha256sum ./defichain-${ver}-aarch64-apple-darwin.tar.gz > ././defichain-${ver}-aarch64-apple-darwin.tar.gz.SHA256)