-
-
Notifications
You must be signed in to change notification settings - Fork 3
149 lines (139 loc) · 4.51 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
name: release
on:
push:
tags:
- 'v0.[0-9]+.[0-9]+'
- 'v0.[0-9]+.[0-9]+-beta.[0-9]+'
jobs:
create-release:
name: create-release
runs-on: ubuntu-22.04
outputs:
upload_url: ${{ steps.release.outputs.upload_url }}
paket_version: ${{ env.PAKET_VERSION }}
steps:
- name: Get the release version from the tag
shell: bash
if: env.PAKET_VERSION == ''
run: |
# Apparently, this is the right way to get a tag name. Really?
#
# See: https://github.saobby.my.eu.orgmunity/t5/GitHub-Actions/How-to-get-just-the-tag-name/m-p/32167/highlight/true#M1027
echo "PAKET_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
echo "version is: ${{ env.PAKET_VERSION }}"
- name: Create GitHub release
id: release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.PAKET_VERSION }}
draft: true
release_name: ${{ env.PAKET_VERSION }}
build-release:
name: build-release
needs: ['create-release']
runs-on: ${{ matrix.os }}
env:
# For some builds, we use cross to test on 32-bit and big-endian
# systems.
CARGO_BIN: cargo
# When CARGO_BIN is set to CROSS, this is set to `--target matrix.target`.
TARGET_FLAGS: ""
# When CARGO_BIN is set to CROSS, TARGET_DIR includes matrix.target.
TARGET_DIR: ./target
# Emit backtraces on panics.
RUST_BACKTRACE: 1
strategy:
matrix:
build:
- linux-musl
- linux-musl-arm64
- linux-musl-i686
- linux-gnu
- linux-gnu-arm64
- linux-gnu-i686
- linux-arm-gnueabihf
- macos
- macos-arm64
include:
- build: linux-musl
os: ubuntu-22.04
rust: stable
target: x86_64-unknown-linux-musl
- build: linux-musl-i686
os: ubuntu-22.04
rust: stable
target: i686-unknown-linux-musl
- build: linux-musl-arm64
os: ubuntu-22.04
rust: stable
target: aarch64-unknown-linux-musl
- build: linux-gnu
os: ubuntu-22.04
rust: stable
target: x86_64-unknown-linux-gnu
- build: linux-gnu-i686
os: ubuntu-22.04
rust: stable
target: i686-unknown-linux-gnu
- build: linux-gnu-arm64
os: ubuntu-22.04
rust: stable
target: aarch64-unknown-linux-gnu
- build: linux-arm-gnueabihf
os: ubuntu-22.04
rust: stable
target: arm-unknown-linux-gnueabihf
- build: macos
os: macos-12
rust: stable
target: x86_64-apple-darwin
- build: macos-arm64
os: macos-12
rust: stable
target: aarch64-apple-darwin
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
- name: Set up Cross
shell: bash
run: |
cargo install cross@^0.2
echo "CARGO_BIN=cross" >> $GITHUB_ENV
echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV
echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV
- name: Show command used for Cargo
run: |
echo "cargo command is: ${{ env.CARGO_BIN }}"
echo "target flag is: ${{ env.TARGET_FLAGS }}"
echo "target dir is: ${{ env.TARGET_DIR }}"
- name: Build release binary
run: ${{ env.CARGO_BIN }} build --verbose --release ${{ env.TARGET_FLAGS }}
- name: Build archive
shell: bash
run: |
staging="paket-${{ needs.create-release.outputs.paket_version }}-${{ matrix.target }}"
mkdir -p "$staging/"
mkdir -p bin
cp {README.md,LICENSE-APACHE,LICENSE-MIT} "$staging/"
cp "target/${{ matrix.target }}/release/paket" "$staging/"
cp "$staging/paket" bin/
tar czf "$staging.tar.gz" "$staging"
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
- name: Upload release archive
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: ${{ env.ASSET }}
asset_name: ${{ env.ASSET }}
asset_content_type: application/octet-stream