Implement an easier way to get Send Serve and Stub #554
Workflow file for this run
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
merge_group: | |
branches: | |
- master | |
name: Continuous Integration | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}" | |
cancel-in-progress: "${{ github.ref != 'refs/heads/master' }}" | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
serde: ["--features serde1", ""] | |
tokio: ["--features tokio1", ""] | |
serde-transport: ["--features serde-transport", ""] | |
serde-transport-json: ["--features serde-transport-json", ""] | |
serde-transport-bincode: ["--features serde-transport-bincode", ""] | |
tcp: ["--features tcp", ""] | |
unix: ["--features unix", ""] | |
exclude: | |
- serde-transport-json: "--features serde-transport-json" | |
serde-transport: "" | |
- serde-transport-bincode: "--features serde-transport-bincode" | |
serde-transport: "" | |
- serde-transport: "--features serde-transport" | |
tokio: "" | |
- serde-transport: "--features serde-transport" | |
serde: "" | |
- tcp: "--features tcp" | |
serde-transport: "" | |
- unix: "--features unix" | |
serde-transport: "" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: > | |
cargo test --manifest-path tarpc/Cargo.toml | |
${{ matrix.serde }} ${{ matrix.tokio }} ${{ matrix.serde-transport }} | |
${{ matrix.serde-transport-json }} ${{ matrix.serde-transport-bincode }} | |
${{ matrix.tcp }} ${{ matrix.unix }} | |
list-examples: | |
name: List Examples | |
runs-on: ubuntu-latest | |
outputs: | |
examples: ${{ steps.matrix.outputs.examples }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- id: matrix | |
run: | | |
examples=$( | |
cargo metadata --no-deps --format-version=1 \ | |
| jq '.packages[] | |
| select ( .name == "tarpc" ) | |
| .targets[] | |
| select (.kind[] | . == "example") | |
| .name' \ | |
| jq -s -c '.' | |
) | |
echo "examples=$examples" | tee -a $GITHUB_OUTPUT | |
run-example: | |
name: Run Example | |
needs: list-examples | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
example: ${{ fromJSON(needs.list-examples.outputs.examples) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: | | |
cargo run --example "${{ matrix.example }}" | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- run: cargo fmt --all -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- run: cargo clippy --all-features --all-targets -- -D warnings | |
# This job succeeds if all other tests and examples succeed. Otherwise, it fails. It is for use in | |
# branch protection rules. | |
test-suite: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
needs: [test, run-example, fmt, clippy] | |
if: always() | |
steps: | |
- name: All tests ok | |
if: ${{ !(contains(needs.*.result, 'failure')) }} | |
run: exit 0 | |
- name: Some tests failed | |
if: ${{ contains(needs.*.result, 'failure') }} | |
run: exit 1 |