-
Notifications
You must be signed in to change notification settings - Fork 43
118 lines (117 loc) · 3.51 KB
/
build.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
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-all:
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-20.04
cross: false
file-ext: ""
- target: x86_64-unknown-linux-musl
os: ubuntu-20.04
cross: true
file-ext: ""
- target: x86_64-pc-windows-msvc
os: windows-latest
cross: false
file-ext: .exe
- target: x86_64-pc-windows-gnu
os: ubuntu-20.04
cross: true
file-ext: .exe
- target: x86_64-apple-darwin
os: macos-latest
cross: false
file-ext: ""
- target: x86_64-linux-android
os: ubuntu-20.04
cross: true
file-ext: ""
- target: aarch64-unknown-linux-gnu
os: ubuntu-20.04
cross: true
file-ext: ""
- target: aarch64-unknown-linux-musl
os: ubuntu-20.04
cross: true
file-ext: ""
- target: aarch64-apple-darwin
os: macos-latest
cross: true
file-ext: ""
- target: aarch64-linux-android
os: ubuntu-20.04
cross: true
file-ext: ""
- target: aarch64-apple-ios
os: macos-latest
cross: true
file-ext: ""
- target: armv7-unknown-linux-gnueabi
os: ubuntu-20.04
cross: true
file-ext: ""
- target: armv7-unknown-linux-gnueabihf
os: ubuntu-20.04
cross: true
file-ext: ""
- target: armv7-unknown-linux-musleabi
os: ubuntu-20.04
cross: true
file-ext: ""
- target: armv7-unknown-linux-musleabihf
os: ubuntu-20.04
cross: true
file-ext: ""
- target: arm-unknown-linux-gnueabi
os: ubuntu-20.04
cross: true
file-ext: ""
- target: arm-unknown-linux-gnueabihf
os: ubuntu-20.04
cross: true
file-ext: ""
- target: arm-unknown-linux-musleabi
os: ubuntu-20.04
cross: true
file-ext: ""
- target: arm-unknown-linux-musleabihf
os: ubuntu-20.04
cross: true
file-ext: ""
- target: armv7-linux-androideabi
os: ubuntu-20.04
cross: true
file-ext: ""
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: ${{ matrix.target }}
override: true
- name: build
uses: actions-rs/cargo@v1
with:
use-cross: ${{ matrix.cross }}
command: build
args: --release -p kaminari-cmd --target=${{ matrix.target }}
- name: pack
run: |
mkdir -p build-${{ matrix.target }}
cd build-${{ matrix.target }}
tar -C ../target/${{ matrix.target }}/release -zcf kaminari-${{ matrix.target }}.tar.gz kaminaris${{ matrix.file-ext }} kaminaric${{ matrix.file-ext }}
- name: upload
uses: actions/upload-artifact@v2
with:
name: kaminari-${{ matrix.target }}.tar.gz
path: build-${{ matrix.target }}/kaminari-${{ matrix.target }}.tar.gz