-
Notifications
You must be signed in to change notification settings - Fork 15
231 lines (225 loc) · 7.75 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
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
name: Release
on:
push:
tags:
- v*
- pre-rel-*
workflow_dispatch:
env:
self-test-img_tag: v0.1.4
self-test-img_repository: golemfactory/ya-self-test-img
rust_stable: 1.80.0
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 = ["TODO"].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-init:
name: Build container Init
runs-on: ubuntu-22.04
steps:
- name: Install Musl
run: sudo apt-get install -y musl-tools musl autoconf gperf libtool automake
- uses: actions/checkout@v1
- name: Make
run: |
musl-gcc -v
git submodule init
git submodule update
cd runtime/init-container
make
- uses: actions/upload-artifact@v4
with:
name: init-container
path: |
runtime/init-container/initramfs.cpio.gz
runtime/init-container/vmlinuz-virt
build:
name: Build Release
needs:
- create-release
- build-init
runs-on: ubuntu-latest
env:
OPENSSL_STATIC: 1
steps:
- uses: actions/checkout@v1
with:
lfs: true
- uses: actions/download-artifact@v4
with:
name: init-container
path: runtime/init-container/
- run: |
ls -R
test -f runtime/init-container/initramfs.cpio.gz
- name: Download self-test image
uses: robinraju/[email protected]
with:
repository: ${{ env.self-test-img_repository }}
tag: ${{ env.self-test-img_tag }}
fileName: self-test.gvmi
out-file-path: runtime/image/
tarBall: false
zipBall: false
- name: Install Musl
run: |
sudo apt-get install -y musl-tools musl
- 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: Install Rust ${{ env.rust_stable }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.rust_stable }}
target: x86_64-unknown-linux-musl
override: true
- name: Build
run: |
ls runtime/conf
cd runtime && cargo build --release --target x86_64-unknown-linux-musl
cat build.rs
ls conf
- name: Pack
id: pack
shell: bash
env:
GITHUB_REF: ${{ github.ref }}
OS_NAME: linux
run: |
TAG_NAME="${GITHUB_REF##*/}"
TARGET_DIR=releases/ya-runtime-vm-linux-${TAG_NAME}
mkdir -p "$TARGET_DIR/ya-runtime-vm/runtime"
strip "target/x86_64-unknown-linux-musl/release/ya-runtime-vm"
set -x
cp target/x86_64-unknown-linux-musl/release/ya-runtime-vm "$TARGET_DIR/ya-runtime-vm/"
cp runtime/conf/ya-runtime-vm.json "$TARGET_DIR/"
cp -r runtime/poc/runtime "$TARGET_DIR/ya-runtime-vm/"
cp "runtime/image/self-test.gvmi" "$TARGET_DIR/ya-runtime-vm/runtime/"
cp "runtime/init-container/initramfs.cpio.gz" "$TARGET_DIR/ya-runtime-vm/runtime/"
cp "runtime/init-container/vmlinuz-virt" "$TARGET_DIR/ya-runtime-vm/runtime/"
(cd releases && tar czvf "ya-runtime-vm-${OS_NAME}-${TAG_NAME}.tar.gz" "ya-runtime-vm-${OS_NAME}-${TAG_NAME}")
echo "::set-output name=artifact::ya-runtime-vm-${OS_NAME}-${TAG_NAME}.tar.gz"
echo "::set-output name=media::application/tar+gzip"
- name: Upload
run: echo todo upload ${{ steps.pack.outputs.artifact }}
- name: Upload Release Asset
id: upload-release-asset
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:
name: Build Deb
needs:
- create-release
- build-init
runs-on: ubuntu-latest
steps:
- 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
with:
lfs: true
- uses: actions/download-artifact@v4
with:
name: init-container
path: runtime/init-container/
- run: |
test -f runtime/init-container/initramfs.cpio.gz
- name: Download self-test image
uses: robinraju/[email protected]
with:
repository: ${{ env.self-test-img_repository }}
tag: ${{ env.self-test-img_tag }}
fileName: self-test.gvmi
out-file-path: runtime/image/
tarBall: false
zipBall: false
- name: Extract Version
id: version
shell: bash
env:
GITHUB_REF: ${{ github.ref }}
run: |
TAG_NAME="${GITHUB_REF##*/}"
TAGV_NAME="${TAG_NAME#pre-rel-}"
VERSION=${TAGV_NAME#v}
VERSION=0.5.0
echo "::set-output name=tagv::${TAG_NAME}"
echo "::set-output name=version::${VERSION}"
- uses: golemfactory/[email protected]
id: deb
with:
debVersion: ${{ steps.version.outputs.version }}
pkgName: ya-runtime-vm
subdir: runtime
- 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-vm_${{ steps.version.outputs.tagv }}_amd64.deb
asset_content_type: application/vnd.debian.binary-package