|
65 | 65 | - loom-compile
|
66 | 66 | - check-readme
|
67 | 67 | - test-hyper
|
| 68 | + - test-quinn |
68 | 69 | - x86_64-fortanix-unknown-sgx
|
69 | 70 | - check-redox
|
70 | 71 | - wasm32-unknown-unknown
|
@@ -859,6 +860,56 @@ jobs:
|
859 | 860 | run: cargo test --features full
|
860 | 861 | working-directory: hyper
|
861 | 862 |
|
| 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 | + |
862 | 913 | x86_64-fortanix-unknown-sgx:
|
863 | 914 | name: build tokio for x86_64-fortanix-unknown-sgx
|
864 | 915 | needs: basics
|
|
0 commit comments