This repository has been archived by the owner on Apr 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
97 lines (90 loc) · 2.93 KB
/
rust.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
name: Rust CI
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Stable with rustfmt and clippy
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- name: Annotate commit with clippy warnings - UDP
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --no-default-features --features use-udp
- name: Annotate commit with clippy warnings - WebRTC
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --no-default-features --features use-webrtc
- name: Security audit
uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: wasm32-unknown-unknown
default: true
- name: Release build - UDP
uses: actions-rs/cargo@v1
with:
command: build
args: --release --no-default-features --features use-udp
- name: Release build - WebRTC
uses: actions-rs/cargo@v1
with:
command: build
args: --release --no-default-features --features use-webrtc
- name: Example 'simple' - UDP
uses: actions-rs/cargo@v1
with:
command: build
args: --example simple --no-default-features --features use-udp
- name: Example 'simple' - WebRTC
uses: actions-rs/cargo@v1
with:
command: build
args: --example simple --no-default-features --features use-webrtc
- name: Patch WASM forced compile_error
run: sed -i /compile_error/d examples/simple.rs
- name: Example 'simple' - WASM
uses: actions-rs/cargo@v1
with:
command: build
args: --example simple --target wasm32-unknown-unknown --no-default-features --features use-webrtc
- name: Install Bevy/default dependencies
run: |
sudo apt-get update
sudo apt-get install pkg-config libx11-dev libasound2-dev libudev-dev
- name: Example 'channels' - UDP
uses: actions-rs/cargo@v1
with:
command: build
args: --example channels --no-default-features --features use-udp,bevy/default
- name: Example 'channels' - WebRTC
uses: actions-rs/cargo@v1
with:
command: build
args: --example channels --no-default-features --features use-webrtc,bevy/default