mirror of
https://github.com/openssl/openssl.git
synced 2025-01-12 13:36:28 +08:00
a941f5d52e
The multiplexing test works on local runs, but appears to be failing in CI, possibly due to some environmental limitation (the test generates a large list of requests in an environment variable), leading to not sending all the requests needed. Disable the test for now, and look to re-enable it after release when we can appropriately diagnose the problem Reviewed-by: Viktor Dukhovni <viktor@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/25528)
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
name: "Run openssl quic interop testing"
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Build openssl interop container from master"]
|
|
types: [completed]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
run_quic_interop:
|
|
strategy:
|
|
matrix:
|
|
tests: [http3, transfer, handshake, retry, chacha20, resumption]
|
|
servers: [quic-go, ngtcp2, mvfst, quiche, nginx, msquic, haproxy]
|
|
fail-fast: false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
repository: 'quic-interop/quic-interop-runner'
|
|
fetch-depth: 0
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -r requirements.txt
|
|
sudo add-apt-repository ppa:wireshark-dev/stable
|
|
sudo apt-get update
|
|
sudo apt-get install -y tshark
|
|
- name: Patch implementations file
|
|
run: |
|
|
jq '.openssl = { image: "quay.io/openssl-ci/openssl-quic-interop"
|
|
, url: "https://github.com/openssl/openssl"
|
|
, role: "client"
|
|
}' ./implementations.json > ./implementations.tmp
|
|
mv ./implementations.tmp implementations.json
|
|
- name: "run interop"
|
|
run: |
|
|
python3 ./run.py -c openssl -t ${{ matrix.tests }} -s ${{ matrix.servers }} --log-dir ./logs -d
|
|
|
|
|