aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-03-16 18:25:37 +0100
committerPauli <pauli@openssl.org>2023-03-22 10:13:30 +1100
commitfc11028089c374bb24655895c90eaf069c3cee6f (patch)
tree9c23b28c127a4b83de99bf9eb98a3f1a641f42b6 /.github
parentc6d14bfd5f16a103181c04614492be03e137d1a4 (diff)
downloadopenssl-fc11028089c374bb24655895c90eaf069c3cee6f.tar.gz
Add simple interoperability test with Cloudflare quiche
This is an external test which requires recursive checkout of the cloudflare-quiche submodule. We simply run a client against the example quiche-server serving HTTP/0.9 requests. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20527)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index eb4384f926..17a87cd1e1 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -410,3 +410,21 @@ jobs:
default: true
- name: test external pyca
run: make test TESTS="test_external_pyca" VERBOSE=1
+
+ external-test-cf-quiche:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ submodules: recursive
+ - name: Configure OpenSSL
+ run: ./config --banner=Configured --strict-warnings enable-external-tests enable-quic && perl configdata.pm --dump
+ - name: make
+ run: make -s -j4
+ - uses: actions-rs/toolchain@v1
+ with:
+ profile: default
+ toolchain: stable
+ default: true
+ - name: test external Cloudflare quiche
+ run: make test TESTS="test_external_cf_quiche" VERBOSE=1