Skip to content

Commit 3297052

Browse files
authored
ci: test Quinn in CI (#6719)
1 parent f8fe0ff commit 3297052

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

.github/workflows/ci.yml

+51
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
- loom-compile
6666
- check-readme
6767
- test-hyper
68+
- test-quinn
6869
- x86_64-fortanix-unknown-sgx
6970
- check-redox
7071
- wasm32-unknown-unknown
@@ -859,6 +860,56 @@ jobs:
859860
run: cargo test --features full
860861
working-directory: hyper
861862

863+
test-quinn:
864+
name: Test Quinn
865+
needs: basics
866+
runs-on: ${{ matrix.os }}
867+
strategy:
868+
matrix:
869+
os:
870+
- windows-latest
871+
- ubuntu-latest
872+
- macos-latest
873+
steps:
874+
- uses: actions/checkout@v4
875+
- name: Install Rust ${{ env.rust_stable }}
876+
uses: dtolnay/rust-toolchain@stable
877+
with:
878+
toolchain: ${{ env.rust_stable }}
879+
880+
- name: Clone Quinn
881+
run: git clone https://github.com/quinn-rs/quinn.git
882+
883+
- name: Checkout the latest release because HEAD maybe contains breakage.
884+
run: |
885+
set -x
886+
tag=$(git describe --abbrev=0 --tags)
887+
git checkout "${tag}"
888+
working-directory: quinn
889+
890+
- name: Patch Quinn to use tokio from this repository
891+
run: |
892+
set -x
893+
echo '[patch.crates-io]' >>Cargo.toml
894+
echo 'tokio = { path = "../tokio" }' >>Cargo.toml
895+
git diff
896+
working-directory: quinn
897+
898+
- uses: Swatinem/rust-cache@v2
899+
with:
900+
# The cargo workspaces and target directory configuration.
901+
# These entries are separated by newlines and have the form
902+
# `$workspace -> $target`. The `$target` part is treated as a directory
903+
# relative to the `$workspace` and defaults to "target" if not explicitly given.
904+
# default: ". -> target"
905+
workspaces: "./quinn"
906+
907+
- name: Test Quinn
908+
working-directory: quinn
909+
env:
910+
RUSTFLAGS: ""
911+
run: cargo test
912+
862913
x86_64-fortanix-unknown-sgx:
863914
name: build tokio for x86_64-fortanix-unknown-sgx
864915
needs: basics

0 commit comments

Comments
 (0)