-
Notifications
You must be signed in to change notification settings - Fork 3
95 lines (92 loc) · 2.9 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
name: CI
on:
pull_request:
push:
branches:
- main
- develop
env:
CARGO_TERM_COLOR: always
CARGO_TERM_VERBOSE: true
jobs:
fmt:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
toolchain: nightly
- run: cargo +nightly fmt --all -- --check
test:
runs-on: ubuntu-24.04
needs: fmt
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install system packages needed by Bevy
run: |
sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack
- run: cargo hack test --all-targets --feature-powerset
docs:
runs-on: ubuntu-24.04
needs: fmt
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install system packages needed by Bevy
run: |
sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack
- run: RUSTDOCFLAGS="-Dwarnings" cargo hack doc --document-private-items --no-deps --feature-powerset
clippy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- windows-2022
- macos-15
- ubuntu-24.04
needs: fmt
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
- name: Install system packages needed by Bevy
if: matrix.os == 'ubuntu-24.04'
run: |
sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack
- run: cargo hack clippy --all-targets --feature-powerset
wasm:
runs-on: ubuntu-24.04
needs: fmt
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
target: wasm32-unknown-unknown
rustflags: "-D warnings --cfg web_sys_unstable_apis"
- name: Install system packages needed by Bevy
run: |
sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev
- run: cargo clippy --target wasm32-unknown-unknown