-
Notifications
You must be signed in to change notification settings - Fork 1
100 lines (88 loc) · 3.1 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
name: Release
on:
workflow_dispatch:
# schedule:
# - cron: "17 17 * * *"
pull_request:
# types: [labeled, review_requested]
push:
tags:
- "v*.*.*"
jobs:
release:
name: Release - ${{ matrix.platform.os-name }}
strategy:
matrix:
platform:
- os-name: FreeBSD-x86_64
runs-on: ubuntu-20.04
target: x86_64-unknown-freebsd
command: build
args: "--release --features=bundled-openssl"
- os-name: Linux-x86_64
runs-on: ubuntu-20.04
target: x86_64-unknown-linux-musl
command: build
args: "--release --features=bundled-openssl"
# FIXME: We need to install libsqlite in some of these targets but this is for later.
- os-name: Linux-aarch64
runs-on: ubuntu-20.04
target: aarch64-unknown-linux-musl
command: build
args: "--release --features=bundled-openssl,bundled-sqlite"
# FIXME: OpenSSL Compilation Errors
# - os-name: Linux-riscv64
# runs-on: ubuntu-20.04
# target: riscv64gc-unknown-linux-gnu
# command: build
# args: "--release --features=bundled-openssl"
# gh -R iesahin/xvc run view 12525734325 --log-failed
# - os-name: Linux-Android
# runs-on: ubuntu-22.04
# target: aarch64-linux-android
# command: build
# args: "--release --features=bundled-openssl,bundled-sqlite"
# gh -R iesahin/xvc run view 12525597866 --log-failed
# - os-name: NetBSD-x86_64
# runs-on: ubuntu-22.04
# target: x86_64-unknown-netbsd
# command: build
# args: "--release --features=bundled-openssl"
- os-name: Windows-x86_64
runs-on: windows-latest
target: x86_64-pc-windows-msvc
command: build
args: "--release --features=bundled-sqlite"
- os-name: Windows-aarch64
runs-on: windows-latest
target: aarch64-pc-windows-msvc
command: build
args: "--release --features=bundled-sqlite"
- os-name: macOS-x86_64
runs-on: macOS-latest
target: x86_64-apple-darwin
command: build
args: "--release"
- os-name: macOS-aarch64
runs-on: macOS-latest
target: aarch64-apple-darwin
command: build
args: "--release"
# more targets here ...
runs-on: ${{ matrix.platform.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
command: ${{ matrix.platform.command }}
target: ${{ matrix.platform.target }}
args: ${{ matrix.platform.args }}
strip: true
- name: Publish artifacts and release
uses: houseabsolute/actions-rust-release@v0
with:
executable-name: xvc
changes-file: "CHANGELOG.md"
target: ${{ matrix.platform.target }}