Merge pull request #221 from c410-f3r/misc #271
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-09-07 | |
- 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-09-07 | |
- 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-09-07 | |
- 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-09-07 | |
- 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-09-07 | |
- uses: Swatinem/rust-cache@v2 | |
- run: sudo apt install docker-compose -y | |
- run: docker-compose -f .test-utils/docker-compose.yml up -d | |
- run: sleep 30 | |
- run: .scripts/integration-tests.sh | |
internal-tests-0: | |
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-09-07 | |
- uses: Swatinem/rust-cache@v2 | |
- run: .scripts/internal-tests-0.sh | |
internal-tests-1: | |
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-09-07 | |
- uses: Swatinem/rust-cache@v2 | |
- run: .scripts/internal-tests-1.sh |