-
Notifications
You must be signed in to change notification settings - Fork 2
186 lines (170 loc) · 5.72 KB
/
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
name: Release
on:
push:
tags:
- v*
- pre-rel-*
jobs:
create-release:
name: "Create Release"
runs-on: ubuntu-latest
steps:
- name: Create Release
uses: actions/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
let tag = context.payload.ref.replace(/.*\//, '');
let buildNo = context.runNumber;
let versionName = tag.replace(/^pre-rel-/,'');
try {
let release = await github.request("GET /repos/:owner/:repo/releases/tags/:tag", {
owner: context.repo.owner,
repo: context.repo.repo,
tag: tag
});
}
catch(e) {
let body = ["By installing & running this software you declare that you have read",
"understood and hereby accept the disclaimer and",
"privacy warning found at https://handbook.golem.network/see-also/terms"].join("\n");
let release = await github.request("POST /repos/:owner/:repo/releases", {
owner: context.repo.owner,
repo: context.repo.repo,
data: {
tag_name: tag,
prerelease: true,
body: body,
name: `${versionName} #${buildNo}`
}
});
console.log(release.data.upload_url);
}
build:
name: Build Release
needs: create-release
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: true
matrix:
os:
- ubuntu
env:
X86_64_PC_WINDOWS_MSVC_OPENSSL_DIR: c:/vcpkg/installed/x64-windows-static
MACOSX_DEPLOYMENT_TARGET: 10.13
OPENSSL_STATIC: 1
steps:
- uses: actions/checkout@v1
- name: Musl
if: matrix.os == 'ubuntu'
run: |
sudo apt-get install musl musl-tools
musl-gcc -v
- name: Get upload url
id: release_upload_url
uses: actions/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
result-encoding: string
script: |
let tag = context.payload.ref.replace(/.*\//, '');
let release = await github.request("GET /repos/:owner/:repo/releases/tags/:tag", {
owner: context.repo.owner,
repo: context.repo.repo,
tag: tag
});
console.log(release.data.upload_url);
return release.data.upload_url
- uses: actions-rs/toolchain@v1
if: matrix.os != 'ubuntu'
with:
toolchain: stable
- uses: actions-rs/toolchain@v1
if: matrix.os == 'ubuntu'
with:
toolchain: stable
target: x86_64-unknown-linux-musl
override: true
- name: Build linux
if: matrix.os == 'ubuntu'
run: |
cargo build --bin ya-runtime-dbg --release --target x86_64-unknown-linux-musl
- name: Pack
id: pack
shell: bash
env:
OS_NAME: ${{ matrix.os }}
GITHUB_REF: ${{ github.ref }}
run: |
bash .ci/pack-build.sh "ya-runtime-dbg" "ya-runtime-dbg"
- name: Upload Release Asset
id: upload-release-asset-req
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.release_upload_url.outputs.result }}
asset_path: ./releases/${{ steps.pack.outputs.artifact }}
asset_name: ${{ steps.pack.outputs.artifact }}
asset_content_type: ${{ steps.pack.outputs.media }}
build-deb:
needs:
- create-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Musl
if: matrix.os == 'ubuntu'
run: |
sudo apt-get install musl musl-tools
musl-gcc -v
- name: Get upload url
id: release_upload_url
uses: actions/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
result-encoding: string
script: |
let tag = context.payload.ref.replace(/.*\//, '');
let release = await github.request("GET /repos/:owner/:repo/releases/tags/:tag", {
owner: context.repo.owner,
repo: context.repo.repo,
tag: tag
});
console.log(release.data.upload_url);
return release.data.upload_url
- name: Check out repository
uses: actions/checkout@v2
- name: Extract Version
id: version
shell: bash
env:
OS_NAME: ${{ matrix.os }}
GITHUB_REF: ${{ github.ref }}
run: |
TAG_NAME="${GITHUB_REF##*/}"
TAGV_NAME="${TAG_NAME#pre-rel-}"
VERSION=${TAGV_NAME#v}
echo "::set-output name=tagv::${TAG_NAME}"
echo "::set-output name=version::${VERSION}"
- uses: actions-rs/toolchain@v1
if: matrix.os == 'ubuntu'
with:
toolchain: stable
target: x86_64-unknown-linux-musl
override: true
- uses: golemfactory/build-deb-action@v2
id: deb
with:
debVersion: ${{ steps.version.outputs.version }}
pkgName: ya-runtime-dbg
- name: Upload Release Deb
id: upload-release-asset-core
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.release_upload_url.outputs.result }}
asset_path: ${{ steps.deb.outputs.deb }}
asset_name: ya-runtime-dbg_${{ steps.version.outputs.tagv }}_amd64.deb
asset_content_type: application/vnd.debian.binary-package