diff options
author | Matt Caswell <matt@openssl.org> | 2023-06-30 16:56:13 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-07-06 04:55:21 +0200 |
commit | 8a7642023884ccfbb17a929698dab8e3fc03cdc9 (patch) | |
tree | c2c99c5cb17cdc072fdb8db9e8434e8a576cb342 /.github/workflows/os-zoo.yml | |
parent | Add limited support for WebAssembly WASI target (diff) | |
download | openssl-8a7642023884ccfbb17a929698dab8e3fc03cdc9.tar.xz openssl-8a7642023884ccfbb17a929698dab8e3fc03cdc9.zip |
Enable QUIC by default
Ensure builds enable QUIC without explicitly having to ask for it. To
disable QUIC pass "no-quic" to Configure.
As a result we can remove all use of "enable-quic" from the various CI
runs.
We also add a CHANGES and NEWS entry for QUIC support.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21332)
Diffstat (limited to '.github/workflows/os-zoo.yml')
-rw-r--r-- | .github/workflows/os-zoo.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/os-zoo.yml b/.github/workflows/os-zoo.yml index ebdc20f4a5..09a2499556 100644 --- a/.github/workflows/os-zoo.yml +++ b/.github/workflows/os-zoo.yml @@ -44,7 +44,7 @@ jobs: fi CC=${{ matrix.cc }} ./config --banner=Configured no-shared \ - -Wall -Werror enable-fips enable-quic --strict-warnings -DOPENSSL_USE_IPV6=0 ${extra_cflags} + -Wall -Werror enable-fips --strict-warnings -DOPENSSL_USE_IPV6=0 ${extra_cflags} - name: config dump run: ./configdata.pm --dump @@ -71,7 +71,7 @@ jobs: - name: config run: | CC=${{ matrix.zoo.cc }} ./config --banner=Configured \ - -Wall -Werror --strict-warnings enable-fips enable-quic + -Wall -Werror --strict-warnings enable-fips - name: config dump run: ./configdata.pm --dump - name: make @@ -99,7 +99,7 @@ jobs: - name: config working-directory: _build run: | - perl ..\Configure --banner=Configured no-makedepend enable-fips enable-quic + perl ..\Configure --banner=Configured no-makedepend enable-fips - name: config dump working-directory: _build run: ./configdata.pm --dump |