-
Notifications
You must be signed in to change notification settings - Fork 74
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
3 changed files
with
104 additions
and
111 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 |
---|---|---|
@@ -0,0 +1,102 @@ | ||
name: Build Platforms | ||
# This workflow is triggered on pushes to the repository. | ||
on: [ pull_request, workflow_call, workflow_dispatch ] | ||
|
||
jobs: | ||
linux: | ||
name: linux | ||
runs-on: ubuntu-latest | ||
strategy: | ||
#fail-fast: true | ||
matrix: | ||
rust: | ||
- stable | ||
- beta | ||
- stable minus 2 releases | ||
feature: | ||
- d | ||
- d,images | ||
- z | ||
- z,images | ||
- z,d | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: Swatinem/rust-cache@v2 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
components: clippy, rustfmt | ||
- run: sudo apt-get install -y libdbus-1-dev | ||
|
||
- name: check (default features) | ||
run: cargo check | ||
|
||
- name: check (${{matrix.feature}}) | ||
run: cargo check --no-default-features --features ${{matrix.feature}} | ||
|
||
# - name: test (default features) | ||
# run: cargo test | ||
|
||
- name: test lib (${{matrix.feature}}) | ||
run: cargo test --lib --no-default-features --features ${{matrix.feature}} | ||
|
||
# - name: test tests (${{matrix.feature}}) | ||
# run: cargo test --tests --no-default-features --features ${{matrix.feature}} | ||
|
||
- name: test docs (${{matrix.feature}}) | ||
run: cargo test --doc --no-default-features --features ${{matrix.feature}} | ||
|
||
- name: clippy (default features) | ||
run: cargo clippy | ||
|
||
windows: | ||
name: windows | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
rust: | ||
- stable | ||
- beta | ||
- stable minus 6 releases | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: Swatinem/rust-cache@v2 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
components: clippy, rustfmt | ||
|
||
- name: check (default features) | ||
run: cargo check | ||
|
||
- name: test (default features) | ||
run: cargo test --no-run | ||
|
||
- name: clippy (default features) | ||
run: cargo clippy -- -D warnings | ||
|
||
macos: | ||
name: macos | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
rust: | ||
- stable | ||
- beta | ||
- stable minus 6 releases | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: Swatinem/rust-cache@v2 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
components: clippy, rustfmt | ||
|
||
- name: check (default features) | ||
run: cargo check | ||
|
||
- name: test (default features) | ||
run: cargo test --no-run | ||
|
||
- name: clippy (default features) | ||
run: cargo clippy -- -D warnings |
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
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