-
Notifications
You must be signed in to change notification settings - Fork 19
136 lines (112 loc) · 3.72 KB
/
ci.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
name: Build
on: [push, pull_request]
jobs:
build:
name: ${{ matrix.job.target }}
runs-on: ${{ matrix.job.os }}
strategy:
matrix:
job:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
cross: false
test: true
publish: true
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
cross: true
test: false
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
cross: true
test: false
- target: aarch64-unknown-linux-musl
os: ubuntu-latest
cross: true
test: false
- target: x86_64-apple-darwin
os: macos-latest
cross: false
test: true
- target: aarch64-apple-darwin
os: macos-latest
cross: false
test: false
- target: x86_64-pc-windows-msvc
os: windows-latest
cross: false
test: true
# TODO: ring build failed
# - target: aarch64-pc-windows-msvc
# os: windows-latest
# cross: true
# test: false
env:
NAME: see
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
target: ${{ matrix.job.target }}
- name: Cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Cargo test
uses: actions-rs/cargo@v1
if: matrix.job.test
with:
command: test
args: --target ${{ matrix.job.target }}
- name: Cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.job.target }}
use-cross: ${{ matrix.job.cross }}
# -------------- GitHub Release --------------
- name: Package zip (unix)
if: startsWith(github.ref, 'refs/tags/') && matrix.job.os != 'windows-latest'
run: |
cd ./target/${{ matrix.job.target }}/release/
zip ${{ env.NAME }}-${{ matrix.job.target }}.zip ${{ env.NAME }}
- name: Package zip (windows)
if: startsWith(github.ref, 'refs/tags/') && matrix.job.os == 'windows-latest'
run: |
cd ./target/${{ matrix.job.target }}/release/
Compress-Archive -CompressionLevel Optimal -Force -Path ${{ env.NAME }}.exe -DestinationPath ${{ env.NAME }}-${{ matrix.job.target }}.zip
- name: GitHub release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: ./target/**/*.zip
# -------------- Cargo publish --------------
- name: Cargo publish
if: startsWith(github.ref, 'refs/tags/') && matrix.job.publish
uses: actions-rs/cargo@v1
with:
command: publish
args: --token ${{ secrets.CARGO_TOKEN }} -v
# -------------- Docker publish --------------
- name: Docker publish
if: startsWith(github.ref, 'refs/tags/') && matrix.job.publish
run: |
docker build . -t wyhaya/see
docker login -u wyhaya -p ${{ secrets.DOCKER_TOKEN }}
docker push wyhaya/see