Breaking free from the constraints of AsyncBounds
#203
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
autobahn-fuzzingclient: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
profile: minimal | |
toolchain: nightly-2024-07-10 | |
- uses: Swatinem/rust-cache@v2 | |
- run: .scripts/autobahn-fuzzingclient.sh ci | |
autobahn-fuzzingserver: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
profile: minimal | |
toolchain: nightly-2024-07-10 | |
- uses: Swatinem/rust-cache@v2 | |
- run: .scripts/autobahn-fuzzingserver.sh ci | |
fuzz: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
profile: minimal | |
toolchain: nightly-2024-07-10 | |
- uses: actions-rs/[email protected] | |
with: | |
crate: cargo-fuzz | |
use-tool-cache: true | |
- run: .scripts/fuzz.sh | |
h2spec: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
profile: minimal | |
toolchain: nightly-2024-07-10 | |
- uses: Swatinem/rust-cache@v2 | |
- run: .scripts/h2spec.sh ci | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
profile: minimal | |
toolchain: nightly-2024-07-10 | |
- uses: Swatinem/rust-cache@v2 | |
- run: docker-compose -f .test-utils/docker-compose.yml up -d | |
- run: sleep 30 | |
- run: .scripts/integration-tests.sh | |
internal-tests0: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/[email protected] | |
with: | |
crate: mdbook | |
use-tool-cache: true | |
- uses: actions-rs/toolchain@v1 | |
with: | |
components: clippy, rustfmt | |
override: true | |
profile: minimal | |
toolchain: nightly-2024-07-10 | |
- uses: Swatinem/rust-cache@v2 | |
- run: .scripts/internal-tests0.sh | |
internal-tests1: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/[email protected] | |
with: | |
crate: mdbook | |
use-tool-cache: true | |
- uses: actions-rs/toolchain@v1 | |
with: | |
components: clippy, rustfmt | |
override: true | |
profile: minimal | |
toolchain: nightly-2024-07-10 | |
- uses: Swatinem/rust-cache@v2 | |
- run: .scripts/internal-tests1.sh |