-
Notifications
You must be signed in to change notification settings - Fork 2
155 lines (147 loc) · 4.66 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
name: release
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
create-release:
name: create-release
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.release.outputs.upload_url }}
fl_version: ${{ env.FL_VERSION }}
steps:
- name: Get the release version from the tag
shell: bash
if: env.FL_VERSION == ''
run: |
echo "FL_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
echo "version is: ${{ env.FL_VERSION }}"
- name: Create GitHub release
id: release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.FL_VERSION }}
release_name: ${{ env.FL_VERSION }}
build-release:
name: build-release
needs: ["create-release"]
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
env:
CARGO: cargo
TARGET_FLAGS: ""
TARGET_DIR: ./target
RUST_BACKTRACE: 1
strategy:
fail-fast: false
matrix:
build:
[
linux-amd64,
linux-arm32,
linux-arm64,
linux-mips64,
linux-riscv64,
linux-powerpc64,
linux-s390,
illumos-amd64,
macos-amd64,
macos-m1,
]
include:
- build: linux-amd64
os: ubuntu-latest
rust: stable
target: x86_64-unknown-linux-musl
experimental: false
- build: linux-arm32
os: ubuntu-latest
rust: stable
target: arm-unknown-linux-musleabihf
experimental: false
- build: linux-arm64
os: ubuntu-latest
rust: stable
target: aarch64-unknown-linux-musl
experimental: false
- build: linux-mips64
os: ubuntu-latest
rust: stable
target: mips64-unknown-linux-muslabi64
experimental: true
- build: linux-riscv64
os: ubuntu-latest
rust: stable
target: riscv64gc-unknown-linux-gnu
experimental: true
- build: linux-powerpc64
os: ubuntu-latest
rust: stable
target: powerpc64-unknown-linux-gnu
experimental: true
- build: linux-s390
os: ubuntu-latest
rust: stable
target: s390x-unknown-linux-gnu
experimental: true
- build: illumos-amd64
os: ubuntu-latest
rust: stable
target: x86_64-unknown-illumos
experimental: true
- build: macos-amd64
os: macos-latest
rust: stable
target: x86_64-apple-darwin
experimental: false
- build: macos-m1
os: macos-latest
rust: stable
target: aarch64-apple-darwin
experimental: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
- name: Use Cross
shell: bash
run: |
cargo install cross
echo "CARGO=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 }}"
echo "target flag is: ${{ env.TARGET_FLAGS }}"
echo "target dir is: ${{ env.TARGET_DIR }}"
- name: Build release binary
run: ${{ env.CARGO }} build --verbose --release ${{ env.TARGET_FLAGS }}
- name: Build archive
shell: bash
run: |
outdir="$(ci/cargo-out-dir "${{ env.TARGET_DIR }}")"
staging="findlargedir-${{ needs.create-release.outputs.fl_version }}-${{ matrix.target }}"
mkdir -p "$staging"
cp {README.md,LICENSE} "$staging"
cp "target/${{ matrix.target }}/release/findlargedir" "$staging"
tar -cJf "$staging.tar.xz" "$staging"
echo "ASSET=$staging.tar.xz" >> $GITHUB_ENV
- name: Upload release archive
uses: actions/[email protected]
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