-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
312 changed files
with
16,889 additions
and
6,894 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,3 @@ | ||
## Description | ||
|
||
Describe the changes you've made. Link to any issues this PR fixes or addresses. | ||
|
||
## Test Plan | ||
|
||
Explain the steps necessary to test your changes. If you used a playground, include the code in the details below. | ||
|
||
Steps: | ||
1. | ||
|
||
<details> | ||
|
||
<summary>Playground</summary> | ||
|
||
```rust | ||
PASTE YOUR PLAYGROUND CODE HERE | ||
``` | ||
|
||
</details> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,110 @@ | ||
name: Rust | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
push: # Run CI on the main branch after every merge. This is important to fill the GitHub Actions cache in a way that pull requests can see it | ||
branches: | ||
- main | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
valence-fmt-clippy: | ||
strategy: | ||
fail-fast: false | ||
fail-fast: true | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-11] | ||
platform: [windows-latest, macos-latest, ubuntu-latest] | ||
style: [default] | ||
rust: | ||
- stable | ||
include: | ||
- style: default | ||
flags: "" | ||
|
||
runs-on: ${{ matrix.os }} | ||
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: clippy, rustfmt | ||
- run: cp tools/playground/src/playground.template.rs tools/playground/src/playground.rs | ||
- name: Set up cargo cache | ||
uses: actions/cache@v3 | ||
continue-on-error: false | ||
|
||
- name: Setup Rust toolchain and cache | ||
uses: actions-rust-lang/[email protected] | ||
with: | ||
path: | | ||
~/.cargo/bin/ | ||
~/.cargo/registry/index/ | ||
~/.cargo/registry/cache/ | ||
~/.cargo/git/db/ | ||
target/ | ||
key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }} | ||
restore-keys: | | ||
${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }} | ||
${{ runner.os }}-cargo-target | ||
toolchain: "stable" | ||
components: "clippy, rustfmt" | ||
|
||
- name: "Copy playground" | ||
run: cp tools/playground/src/playground.template.rs tools/playground/src/playground.rs | ||
|
||
- name: Install Dependencies (Linux) | ||
run: sudo apt-get update && sudo apt-get install -y libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev libclang-dev libgtk-3-dev | ||
if: matrix.os == 'ubuntu-latest' | ||
- name: Validate formatting | ||
if: matrix.platform == 'ubuntu-latest' | ||
|
||
- name: cargo fmt | ||
run: cargo fmt --all -- --check | ||
- name: Validate documentation | ||
run: cargo doc --workspace --no-deps --all-features --document-private-items | ||
- name: Run clippy lints | ||
run: cargo clippy --workspace --no-deps --all-features --all-targets -- -D warnings | ||
|
||
- name: Clippy | ||
run: cargo clippy --workspace ${{ matrix.flags }}--no-deps --all-features --all-targets -- -D warnings | ||
|
||
valence-tests: | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
platform: [windows-latest, macos-latest, ubuntu-latest] | ||
style: [default] | ||
rust: | ||
- stable | ||
include: | ||
- style: default | ||
flags: "" | ||
|
||
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Rust toolchain and cache | ||
uses: actions-rust-lang/[email protected] | ||
|
||
- name: "Copy playground" | ||
run: cp tools/playground/src/playground.template.rs tools/playground/src/playground.rs | ||
|
||
- name: Install Dependencies (Linux) | ||
run: sudo apt-get update && sudo apt-get install -y libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev libclang-dev libgtk-3-dev | ||
if: matrix.platform == 'ubuntu-latest' | ||
|
||
- name: Run tests | ||
run: cargo test --workspace --all-features --all-targets | ||
run: cargo test --workspace ${{ matrix.flags }}--all-features --all-targets | ||
|
||
- name: Run valence_nbt tests without preserve_order feature | ||
run: cargo test -p valence_nbt --all-targets | ||
|
||
valence-docs: | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
platform: [windows-latest, macos-latest, ubuntu-latest] | ||
style: [default] | ||
rust: | ||
- stable | ||
include: | ||
- style: default | ||
flags: "" | ||
|
||
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Rust toolchain and cache | ||
uses: actions-rust-lang/[email protected] | ||
|
||
- name: "Copy playground" | ||
run: cp tools/playground/src/playground.template.rs tools/playground/src/playground.rs | ||
|
||
- name: Install Dependencies (Linux) | ||
run: sudo apt-get update && sudo apt-get install -y libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev libclang-dev libgtk-3-dev | ||
if: matrix.platform == 'ubuntu-latest' | ||
|
||
- name: Validate documentation | ||
run: cargo doc --workspace ${{ matrix.flags }}--no-deps --all-features --document-private-items |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.