Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 59e02e5
  • /
  • .github
  • /
  • workflows
  • /
  • run_quic_interop.yml
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:b77880d5cf53748311e69c06a5fe3c38d7943934
directory badge Iframe embedding
swh:1:dir:f5373687d74f64458f7b4d1eaf0b281dc54a6a4d
run_quic_interop.yml
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, multiplexing]
        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


ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top