forked from FyroxEngine/Fyrox
-
Notifications
You must be signed in to change notification settings - Fork 0
119 lines (114 loc) · 4.26 KB
/
Copy pathci.yml
File metadata and controls
119 lines (114 loc) · 4.26 KB
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: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
# Deny warns here as a catch-all and because some commands (e.g. cargo build) don't accept `--deny warnings`
# but also deny them on all individual cargo invocations where available because:
# 1) Some commands might not support rustflags (e.g. clippy didn't at first, cargo doc uses a different var, ...)
# 2) People might copy paste the commands into CI where this flag is missing without noticing.
RUSTFLAGS: --deny warnings
jobs:
tests:
name: Tests CI
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
rust: [stable]
# For reference: https://github.com/actions/virtual-environments#available-environments
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 xorg-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev
- run: rustup update
- run: rustc --version && cargo --version
- name: Build
# Use build instead of check since it needs to be built for tests anyway
run: cargo build --verbose --workspace --all-targets --all-features
- name: Test
# Currently --all-targets *disables* running doc-tests
# and none of the other targets such as examples *currently* have tests
# so we don't use it. It should be added later when the issue is fixed:
# https://github.com/rust-lang/cargo/issues/6669
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 examples/wasm
wasm-pack build --target web
- name: Test
run: |
cd examples/wasm
wasm-pack test --headless --chrome
wasm-pack test --headless --firefox
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 # Check on stable because nightly sometimes has faulty lints that makes CI fail
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 xorg-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev
- run: cargo clippy --version
# Using --all-targets to also check tests and examples.
# Note that technically --all-features doesn't check all code when something is *disabled* by a feature.
- 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