From c883b18f2d46a05915ff135c00f892e12b8ba032 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 16 Jan 2022 22:00:27 +0900 Subject: [PATCH] Pin quic dependency --- .github/workflows/build.yml | 4 ++-- README.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e29de8cc..864afb19 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -114,7 +114,7 @@ jobs: - name: Build nghttp3 if: matrix.http3 == 'http3' run: | - git clone https://github.com/ngtcp2/nghttp3 + git clone --depth 1 -b v0.1.0 https://github.com/ngtcp2/nghttp3 cd nghttp3 autoreconf -i ./configure --prefix=$PWD/build --enable-lib-only @@ -123,7 +123,7 @@ jobs: - name: Build ngtcp2 if: matrix.http3 == 'http3' run: | - git clone https://github.com/ngtcp2/ngtcp2 + git clone --depth 1 -b v0.1.0 https://github.com/ngtcp2/ngtcp2 cd ngtcp2 autoreconf -i ./configure --prefix=$PWD/build --enable-lib-only PKG_CONFIG_PATH="../openssl/build/lib/pkgconfig" diff --git a/README.rst b/README.rst index 14019c69..20f9aea9 100644 --- a/README.rst +++ b/README.rst @@ -366,7 +366,7 @@ Build nghttp3: .. code-block:: text - $ git clone --depth 1 https://github.com/ngtcp2/nghttp3 + $ git clone --depth 1 -b v0.1.0 https://github.com/ngtcp2/nghttp3 $ cd nghttp3 $ autoreconf -i $ ./configure --prefix=$PWD/build --enable-lib-only @@ -378,7 +378,7 @@ Build ngtcp2: .. code-block:: text - $ git clone --depth 1 https://github.com/ngtcp2/ngtcp2 + $ git clone --depth 1 -b v0.1.0 https://github.com/ngtcp2/ngtcp2 $ cd ngtcp2 $ autoreconf -i $ ./configure --prefix=$PWD/build --enable-lib-only \