-
Notifications
You must be signed in to change notification settings - Fork 293
119 lines (117 loc) · 3.41 KB
/
cross_compile.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
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build-corss:
runs-on: ubuntu-20.04
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
output: realm
- target: x86_64-unknown-linux-musl
output: realm
- target: x86_64-linux-android
output: realm
- target: x86_64-pc-windows-gnu
output: realm.exe
- target: aarch64-unknown-linux-gnu
output: realm
- target: aarch64-unknown-linux-musl
output: realm
- target: aarch64-linux-android
output: realm
- target: arm-unknown-linux-gnueabi
output: realm
- target: arm-unknown-linux-gnueabihf
output: realm
- target: arm-unknown-linux-musleabi
output: realm
- target: arm-unknown-linux-musleabihf
output: realm
- target: armv7-unknown-linux-gnueabi
output: realm
- target: armv7-unknown-linux-gnueabihf
output: realm
- target: armv7-unknown-linux-musleabi
output: realm
- target: armv7-unknown-linux-musleabihf
output: realm
steps:
- uses: actions/checkout@v3
- run: echo '[build]' > Cross.toml && echo 'build-std = true' >> Cross.toml
if: contains(matrix.target, 'android')
- name: install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: ${{ matrix.target }}
override: true
- name: compile
uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --release --target=${{ matrix.target }}
- name: upload
uses: actions/upload-artifact@v2
with:
name: realm-${{ matrix.target }}
path: target/${{ matrix.target }}/release/${{ matrix.output }}
build-windows:
runs-on: windows-latest
strategy:
matrix:
target:
- x86_64-pc-windows-msvc
steps:
- uses: actions/checkout@v3
- name: install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: ${{ matrix.target }}
override: true
- name: compile
uses: actions-rs/cargo@v1
with:
use-cross: false
command: build
args: --release --target=${{ matrix.target }}
- name: upload
uses: actions/upload-artifact@v2
with:
name: realm-${{ matrix.target }}
path: target/${{ matrix.target }}/release/realm.exe
build-apple:
runs-on: macos-latest
strategy:
matrix:
target:
- x86_64-apple-darwin
- aarch64-apple-darwin
- aarch64-apple-ios
steps:
- uses: actions/checkout@v3
- name: install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: ${{ matrix.target }}
override: true
- name: compile
uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --release --target=${{ matrix.target }}
- name: upload
uses: actions/upload-artifact@v2
with:
name: realm-${{ matrix.target }}
path: target/${{ matrix.target }}/release/realm