-
Notifications
You must be signed in to change notification settings - Fork 24
176 lines (150 loc) · 6.2 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
name: Release
on:
push:
branches:
- test
release:
types:
- 'published'
jobs:
build:
name: ${{ matrix.job.target }} (${{ matrix.job.os }})
runs-on: ${{ matrix.job.os }}
strategy:
fail-fast: false
matrix:
job:
- { target: aarch64-apple-darwin , os: macos-13 }
- { target: aarch64-pc-windows-gnu , os: windows-2022 }
- { target: aarch64-pc-windows-msvc , os: windows-2022 }
- { target: aarch64-linux-android , os: ubuntu-22.04, use-cross: true }
- { target: aarch64-unknown-linux-gnu , os: ubuntu-22.04, use-cross: true }
- { target: aarch64-unknown-linux-musl , os: ubuntu-22.04, use-cross: true }
- { target: arm-unknown-linux-gnueabihf , os: ubuntu-22.04, use-cross: true }
- { target: arm-unknown-linux-musleabihf, os: ubuntu-22.04, use-cross: true }
- { target: i686-pc-windows-msvc , os: windows-2022 }
- { target: i686-unknown-linux-gnu , os: ubuntu-22.04, use-cross: true }
- { target: i686-unknown-linux-musl , os: ubuntu-22.04, use-cross: true }
- { target: x86_64-apple-darwin , os: macos-13 }
- { target: x86_64-pc-windows-gnu , os: windows-2022 }
- { target: x86_64-pc-windows-msvc , os: windows-2022 }
- { target: x86_64-unknown-linux-gnu , os: ubuntu-22.04, use-cross: true }
- { target: x86_64-unknown-linux-musl , os: ubuntu-22.04, use-cross: true }
env:
VERSION: $GITHUB_REF_NAME
BUILD_CMD: cargo
BUILD_NDK: ""
EXE_SUFFIX: ""
PKG_LIVE777_NAME: ""
PKG_WHEPFROM_NAME: ""
PKG_WHIPINTO_NAME: ""
# https://source.android.com/docs/setup/reference/build-numbers
CARGO_NDK_ANDROID_PLATFORM: 25
steps:
- name: Checkout source code
uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install
run: bun install
- name: Build Webui
run: bun run build
- name: Get the release version from the tag
run: |
echo "version is: ${{ env.VERSION }}"
- name: Install cargo-ndk
if: contains(matrix.job.target, 'android')
run: |
cargo install cargo-ndk
echo "BUILD_NDK=ndk -t arm64-v8a" >> $GITHUB_ENV
- name: Install prerequisites
shell: bash
run: |
case ${{ matrix.job.target }} in
arm-unknown-linux-*) sudo apt-get -y update ; sudo apt-get -y install gcc-arm-linux-gnueabihf ;;
aarch64-unknown-linux-gnu) sudo apt-get -y update ; sudo apt-get -y install gcc-aarch64-linux-gnu ;;
esac
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.job.target }}
- name: Install cross
if: matrix.job.use-cross
uses: taiki-e/install-action@v2
with:
tool: cross
- name: Overwrite build command env variable
if: matrix.job.use-cross
shell: bash
run: echo "BUILD_CMD=cross" >> $GITHUB_ENV
- name: Overwrite suffix env variable
if: runner.os == 'Windows'
shell: bash
run: echo "EXE_SUFFIX=.exe" >> $GITHUB_ENV
- name: Show version information (Rust, cargo, GCC)
shell: bash
run: |
gcc --version || true
rustup -V
rustup toolchain list
rustup default
cargo -V
rustc -V
- name: Build
shell: bash
run: |
$BUILD_CMD $BUILD_NDK build --locked --release --target=${{ matrix.job.target }}
$BUILD_CMD $BUILD_NDK build --locked --package=whepfrom --release --target=${{ matrix.job.target }}
$BUILD_CMD $BUILD_NDK build --locked --package=whipinto --release --target=${{ matrix.job.target }}
- name: Archive
shell: bash
run: |
PKG_BUILDNAME=${{ env.VERSION }}-${{ matrix.job.target }}${{ env.EXE_SUFFIX }}
echo "BUILD_PATH=target/${{ matrix.job.target }}/release" >> $GITHUB_ENV
echo "PKG_LIVE777_NAME=live777-${PKG_BUILDNAME}" >> $GITHUB_ENV
echo "PKG_WHEPFROM_NAME=whepfrom-${PKG_BUILDNAME}" >> $GITHUB_ENV
echo "PKG_WHIPINTO_NAME=whipinto-${PKG_BUILDNAME}" >> $GITHUB_ENV
- name: Create tarball
shell: bash
run: |
TAR_SUFFIX=".tar.gz" ; case ${{ matrix.job.target }} in *-pc-windows-*) TAR_SUFFIX=".zip" ;; esac;
TAR_BASENAME=live777-${{ env.VERSION }}-${{ matrix.job.target }}
TAR_NAME=${TAR_BASENAME}${TAR_SUFFIX}
ARCHIVE_DIR="${TAR_BASENAME}/"
mkdir -p "${ARCHIVE_DIR}"
cp "${{ env.BUILD_PATH }}/live777${{ env.EXE_SUFFIX }}" "$ARCHIVE_DIR"
cp "README.md" "LICENSE" "conf/live777.toml" "conf/live777.service" "$ARCHIVE_DIR"
# base compressed package
case ${{ matrix.job.target }} in
*-pc-windows-*) 7z -y a "${TAR_NAME}" "${TAR_BASENAME}"/* | tail -2 ;;
*) tar czf "${TAR_NAME}" "${TAR_BASENAME}"/* ;;
esac;
# Let subsequent steps know where to find the compressed package
echo "TAR_LIVE777_NAME=${TAR_NAME}" >> $GITHUB_ENV
- name: Artifact Upload
uses: actions/upload-artifact@v4
with:
name: ${{ env.TAR_LIVE777_NAME }}
path: ${{ env.TAR_LIVE777_NAME }}
- name: Artifact Upload Whepfrom
uses: actions/upload-artifact@v4
with:
name: ${{ env.PKG_WHEPFROM_NAME }}
path: ${{ env.BUILD_PATH }}/whepfrom${{ env.EXE_SUFFIX }}
- name: Artifact Upload Whipinto
uses: actions/upload-artifact@v4
with:
name: ${{ env.PKG_WHIPINTO_NAME }}
path: ${{ env.BUILD_PATH }}/whipinto${{ env.EXE_SUFFIX }}
- name: Rename binary
shell: bash
run: |
mv ${{ env.BUILD_PATH }}/whepfrom${{ env.EXE_SUFFIX }} ${{ env.PKG_WHEPFROM_NAME }}
mv ${{ env.BUILD_PATH }}/whipinto${{ env.EXE_SUFFIX }} ${{ env.PKG_WHIPINTO_NAME }}
- name: Upload release archive
shell: bash
if: github.ref_type == 'tag'
run: gh release upload ${{ env.VERSION }} ${{ env.TAR_LIVE777_NAME }} ${{ env.PKG_WHEPFROM_NAME }} ${{ env.PKG_WHIPINTO_NAME }}
env:
GH_TOKEN: ${{ github.token }}