feat(http): add multipart for server #1349
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
name: "CI" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
RUST_BACKTRACE: 1 | |
CARGO_TERM_COLOR: always | |
jobs: | |
ci-pass: | |
name: CI is green | |
runs-on: ubuntu-latest | |
needs: | |
- test-linux | |
- test-linux-aarch64 | |
- test-macos | |
- test-windows | |
- lint | |
steps: | |
- run: exit 0 | |
lint: | |
runs-on: [self-hosted, X64] | |
strategy: | |
matrix: | |
rust: [nightly] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
components: rustfmt,clippy | |
toolchain: ${{matrix.rust}} | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Format check | |
run: | | |
cargo fmt -- --check | |
docs-check: | |
runs-on: [self-hosted, X64] | |
strategy: | |
matrix: | |
rust: [nightly] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
components: rustfmt,clippy | |
toolchain: ${{matrix.rust}} | |
- name: Docs check | |
run: | | |
cargo rustdoc -p volo --all-features -- --deny warnings | |
cargo rustdoc -p volo-build --all-features -- --deny warnings | |
cargo rustdoc -p volo-grpc --all-features -- --deny warnings | |
cargo rustdoc -p volo-http --all-features -- --deny warnings | |
cargo rustdoc -p volo-thrift --all-features -- --deny warnings | |
test-linux: | |
runs-on: [self-hosted, X64] | |
strategy: | |
matrix: | |
rust: [nightly, stable] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
components: rustfmt,clippy | |
toolchain: ${{matrix.rust}} | |
- name: Run tests | |
run: | | |
apt update | |
apt install -y libssl-dev | |
bash scripts/clippy-and-test.sh | |
test-linux-aarch64: | |
runs-on: [self-hosted, arm] | |
strategy: | |
matrix: | |
rust: [nightly, stable] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
components: rustfmt,clippy | |
toolchain: ${{matrix.rust}} | |
- name: Run tests | |
run: | | |
apt update | |
apt install -y libssl-dev | |
bash scripts/clippy-and-test.sh | |
test-macos: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
rust: [nightly, stable] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
components: rustfmt,clippy | |
toolchain: ${{matrix.rust}} | |
# - uses: Swatinem/rust-cache@v1 | |
- name: Run tests | |
run: | | |
bash scripts/clippy-and-test.sh | |
test-windows: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
rust: [nightly, stable] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
components: rustfmt,clippy | |
toolchain: ${{matrix.rust}} | |
# - uses: Swatinem/rust-cache@v1 | |
- name: Run tests | |
run: | | |
bash scripts/clippy-and-test.sh | |
test-cli: | |
runs-on: [self-hosted, X64] | |
strategy: | |
matrix: | |
rust: [stable] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
components: rustfmt | |
toolchain: ${{matrix.rust}} | |
- name: Cli tests | |
run: | | |
bash scripts/volo-cli-test.sh |