|
| 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 }}" |
0 commit comments