-
Notifications
You must be signed in to change notification settings - Fork 0
107 lines (93 loc) · 2.97 KB
/
cd.yaml
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
name: Release
on:
push:
branches:
- main
- master
tags:
- '*'
pull_request:
workflow_dispatch:
jobs:
release:
name: Release - ${{ matrix.platform.release_for }}
strategy:
matrix:
platform:
# linux
- release_for: linux-x86_64-gnu
os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
bin: aqora
name: aqora-linux-x86_64-gnu.tar.gz
- release_for: linux-x86_64-musl
os: ubuntu-20.04
target: x86_64-unknown-linux-musl
bin: aqora
name: aqora-linux-x86_64-musl.tar.gz
- release_for: linux-aarch64-gnu
os: ubuntu-20.04
target: aarch64-unknown-linux-gnu
bin: aqora
name: aqora-linux-aarch64-gnu.tar.gz
- release_for: linux-aarch64-musl
os: ubuntu-20.04
target: aarch64-unknown-linux-musl
bin: aqora
name: aqora-linux-aarch64-musl.tar.gz
# windows
- release_for: windows-x86_64-msvc
os: windows-latest
target: x86_64-pc-windows-msvc
bin: aqora.exe
name: aqora-windows-x86_64-msvc.zip
- release_for: windows-x86_64-gnu
os: windows-latest
target: x86_64-pc-windows-gnu
bin: aqora.exe
name: aqora-windows-x86_64-gnu.zip
- release_for: windows-aarch64-msvc
os: windows-latest
target: aarch64-pc-windows-msvc
bin: aqora.exe
name: aqora-windows-aarch64-msvc.zip
# macos
- release_for: macos-x86_64
os: macos-latest
target: x86_64-apple-darwin
bin: aqora
name: aqora-darwin-x86_64.tar.gz
- release_for: macos-aarch64
os: macos-latest
target: aarch64-apple-darwin
bin: aqora
name: aqora-darwin-aarch64.tar.gz
runs-on: ${{ matrix.platform.os }}
steps:
- name: Add musl tools to Ubuntu
if: ${{ startsWith(matrix.platform.os, "ubuntu") }}
run: apt-get install -y musl-dev musl-tools
- name: Checkout
uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
target: ${{ matrix.platform.target }}
args: "--release"
strip: true
- name: Package as archive
shell: bash
run: |
cd target/${{ matrix.platform.target }}/release
if [[ "${{ matrix.platform.os }}" == "windows-latest" ]]; then
7z a ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
else
tar czvf ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
fi
cd -
- name: Publish GitHub release
uses: softprops/action-gh-release@v1
with:
draft: true
files: "aqora*"