Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tracing Infrastructure #619

Merged
merged 12 commits into from
Apr 30, 2020
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,30 +27,44 @@ jobs:
name: iOS Stable
channel: stable
build_command: rustup target add aarch64-apple-ios; cargo clippy --target aarch64-apple-ios
additional_core_features:
additional_player_features:
- os: macos-10.15
name: MacOS Stable
channel: stable
build_command: cargo clippy
additional_core_features: trace
additional_player_features: winit
- os: macos-10.15
name: MacOS Nightly
channel: nightly
build_command: cargo test
additional_core_features:
additional_player_features:
- os: ubuntu-18.04
name: Ubuntu Stable
channel: stable
build_command: cargo clippy
additional_core_features: trace,replay
additional_player_features:
- os: ubuntu-18.04
name: Ubuntu Nightly
channel: nightly
build_command: cargo test
additional_core_features:
additional_player_features: winit
- os: windows-2019
name: Windows Stable
channel: stable
build_command: rustup default stable-msvc; cargo clippy
additional_core_features: trace
additional_player_features:
- os: windows-2019
name: Windows Nightly
channel: nightly
build_command: rustup default nightly-msvc; cargo test
additional_core_features:
additional_player_features:
steps:
- uses: actions/checkout@v2
- if: matrix.channel == 'nightly'
Expand All @@ -63,3 +77,7 @@ jobs:
run: rustup component add clippy
- name: cargo clippy/test
run: ${{ matrix.build_command }}
- if: matrix.additional_core_features != ''
run: cargo check --manifest-path wgpu-core/Cargo.toml --features ${{ matrix.additional_core_features }}
- if: matrix.additional_player_features != ''
run: cargo check --manifest-path player/Cargo.toml --features ${{ matrix.additional_player_features }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
Cargo.lock
/target
**/*.rs.bk
#Cargo.lock
Expand Down
Loading