-
Notifications
You must be signed in to change notification settings - Fork 5
104 lines (104 loc) · 3.29 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
name: Release
on:
push:
tags:
- '*'
jobs:
build:
name: Build for ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
name: linux64
artifact_name: target/release/ic-wasm
asset_name: ic-wasm-linux64
- os: macos-12
name: macos
artifact_name: target/release/ic-wasm
asset_name: ic-wasm-macos
steps:
- uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build
run: cargo build --release --locked
- name: 'Upload assets'
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.asset_name }}
path: ${{ matrix.artifact_name }}
retention-days: 3
test:
needs: build
name: Test for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
asset_name: ic-wasm-linux64
- os: ubuntu-20.04
asset_name: ic-wasm-linux64
- os: macos-13
asset_name: ic-wasm-macos
- os: macos-12
asset_name: ic-wasm-macos
#- os: macos-11
# asset_name: ic-wasm-macos
steps:
- name: Get executable
id: download
uses: actions/download-artifact@v3
with:
name: ${{ matrix.asset_name }}
- name: Executable runs
run: |
chmod +x ic-wasm
./ic-wasm --version
publish:
needs: test
name: Publish ${{ matrix.asset_name }}
strategy:
fail-fast: false
matrix:
include:
# Note:
# - `asset_name` is the traditional name for these releases. It is simple to understand and keeping it preserves backwards compatibility.
# - `binstall_name` is the name used by `cargo binstall`. `binstall` installs a binary, if available for the given target, else builds from source.
# Building from source is time-consuming, hence the preference for `cargo binstall` over `cargo install` that always builds from source.
- asset_name: ic-wasm-linux64
binstall_name: ic-wasm-x86_64-unknown-linux-gnu.tar.gz
- asset_name: ic-wasm-macos
binstall_name: ic-wasm-x86_64-apple-darwin.tar.gz
runs-on: ubuntu-latest
steps:
- name: Get executable
uses: actions/download-artifact@v3
with:
name: ${{ matrix.asset_name }}
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ic-wasm
asset_name: ${{ matrix.asset_name }}
tag: ${{ github.ref }}
- name: Bundle for binstall
run: |
chmod +x ic-wasm
tar -cvzf ${{ matrix.binstall_name }} ic-wasm
- name: Upload binstall binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ matrix.binstall_name }}
asset_name: ${{ matrix.binstall_name }}
tag: ${{ github.ref }}