-
-
Notifications
You must be signed in to change notification settings - Fork 11
145 lines (139 loc) · 4.16 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
137
138
139
140
141
142
143
144
145
name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: --deny warnings
jobs:
tests:
name: Tests CI
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
rust: [stable]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
- name: Install linux deps
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt-get update # Run update first or install might start failing eventually.
sudo apt-get install --no-install-recommends -y libasound2-dev libudev-dev pkg-config
- run: rustup update
- run: rustc --version && cargo --version
- name: Build
run: cargo build --verbose --workspace --all-targets --all-features
- name: Test
run: cargo test --verbose --workspace --all-features
wasm:
name: Wasm CI
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [stable]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
- name: Install Dependencies
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- run: rustup update
- run: rustc --version && cargo --version && wasm-pack --version
- run: cargo update
- name: Build
run: |
cd wasm-examples
wasm-pack build --target web
- name: Test
run: |
cd wasm-examples
wasm-pack test --headless --chrome
wasm-pack test --headless --firefox
android:
name: Android CI
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
target: armv7-linux-androideabi
- run: rustup update
- run: rustc --version && cargo --version
- run: cargo update
- name: Build
run: cargo check --verbose --workspace --target=armv7-linux-androideabi --all-features
ios:
name: iOS CI
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: brew install llvm
- name: Install stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Add iOS targets
run: rustup target add aarch64-apple-ios x86_64-apple-ios
- name: Build aarch64
run: cargo check --verbose --workspace --target=aarch64-apple-ios --all-features
- name: Build x86_64
run: cargo check --verbose --workspace --target=x86_64-apple-ios --all-features
format:
name: Rustfmt CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup update
- run: cargo fmt --version
- run: cargo fmt -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy
override: true
- name: Update
run: sudo apt update
- name: Install Dependencies
run: |
sudo apt-get update # Run update first or install might start failing eventually
sudo apt-get install --no-install-recommends -y libasound2-dev libudev-dev pkg-config
- run: cargo clippy --version
- run: cargo clippy --workspace --all-targets --all-features -- --deny warnings
docs:
name: Documentation CI
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- run: rustup update
- run: rustc --version && cargo --version
- name: Build Docs
run: cargo doc --all-features
env:
RUSTDOCFLAGS: --deny warnings