mirror of
https://github.com/curl/curl.git
synced 2025-09-13 23:52:42 +03:00
Add the remainder of the workflows
This commit is contained in:
parent
73a3602120
commit
4f262ee0e1
1
.github/workflows/linux.yml
vendored
1
.github/workflows/linux.yml
vendored
|
@ -41,6 +41,7 @@ permissions: {}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
MAKEFLAGS: -j 3
|
MAKEFLAGS: -j 3
|
||||||
|
# unhandled
|
||||||
bearssl-version: 0.6
|
bearssl-version: 0.6
|
||||||
# renovate: datasource=github-tags depName=libressl-portable/portable versioning=semver registryUrl=https://github.com
|
# renovate: datasource=github-tags depName=libressl-portable/portable versioning=semver registryUrl=https://github.com
|
||||||
libressl-version: 3.7.3
|
libressl-version: 3.7.3
|
||||||
|
|
23
.github/workflows/ngtcp2-linux.yml
vendored
23
.github/workflows/ngtcp2-linux.yml
vendored
|
@ -46,13 +46,19 @@ permissions: {}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
MAKEFLAGS: -j 3
|
MAKEFLAGS: -j 3
|
||||||
|
# unhandled
|
||||||
quictls-version: 3.1.4+quic
|
quictls-version: 3.1.4+quic
|
||||||
|
# renovate: datasource=github-tags depName=gnutls/gnutls versioning=semver registryUrl=https://github.com
|
||||||
gnutls-version: 3.8.3
|
gnutls-version: 3.8.3
|
||||||
wolfssl-version: master
|
wolfssl-version: master
|
||||||
nghttp3-version: v1.2.0
|
# renovate: datasource=github-tags depName=ngtcp2/nghttp3 versioning=semver registryUrl=https://github.com
|
||||||
ngtcp2-version: v1.4.0
|
nghttp3-version: 1.2.0
|
||||||
nghttp2-version: v1.61.0
|
# renovate: datasource=github-tags depName=ngtcp2/ngtcp2 versioning=semver registryUrl=https://github.com
|
||||||
mod_h2-version: v2.0.27
|
ngtcp2-version: 1.4.0
|
||||||
|
# renovate: datasource=github-tags depName=nghttp2/nghttp2 versioning=semver registryUrl=https://github.com
|
||||||
|
nghttp2-version: 1.61.0
|
||||||
|
# renovate: datasource=github-tags depName=icing/mod_h2 versioning=semver registryUrl=https://github.com
|
||||||
|
mod_h2-version: 2.0.27
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
autotools:
|
autotools:
|
||||||
|
@ -145,7 +151,6 @@ jobs:
|
||||||
make install
|
make install
|
||||||
name: 'install gnutls'
|
name: 'install gnutls'
|
||||||
|
|
||||||
|
|
||||||
- name: cache wolfssl
|
- name: cache wolfssl
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
id: cache-wolfssl
|
id: cache-wolfssl
|
||||||
|
@ -184,7 +189,7 @@ jobs:
|
||||||
- if: steps.cache-nghttp3.outputs.cache-hit != 'true'
|
- if: steps.cache-nghttp3.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
cd $HOME
|
cd $HOME
|
||||||
git clone --quiet --depth=1 -b ${{ env.nghttp3-version }} https://github.com/ngtcp2/nghttp3
|
git clone --quiet --depth=1 -b v${{ env.nghttp3-version }} https://github.com/ngtcp2/nghttp3
|
||||||
cd nghttp3
|
cd nghttp3
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
|
@ -199,7 +204,7 @@ jobs:
|
||||||
|
|
||||||
# depends on all other cached libs built so far
|
# depends on all other cached libs built so far
|
||||||
- run: |
|
- run: |
|
||||||
git clone --quiet --depth=1 -b ${{ env.ngtcp2-version }} https://github.com/ngtcp2/ngtcp2
|
git clone --quiet --depth=1 -b v${{ env.ngtcp2-version }} https://github.com/ngtcp2/ngtcp2
|
||||||
cd ngtcp2
|
cd ngtcp2
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-lib-only --with-openssl --with-gnutls --with-wolfssl
|
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-lib-only --with-openssl --with-gnutls --with-wolfssl
|
||||||
|
@ -208,7 +213,7 @@ jobs:
|
||||||
|
|
||||||
# depends on all other cached libs built so far
|
# depends on all other cached libs built so far
|
||||||
- run: |
|
- run: |
|
||||||
git clone --quiet --depth=1 -b ${{ env.nghttp2-version }} https://github.com/nghttp2/nghttp2
|
git clone --quiet --depth=1 -b v${{ env.nghttp2-version }} https://github.com/nghttp2/nghttp2
|
||||||
cd nghttp2
|
cd nghttp2
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-http3
|
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-http3
|
||||||
|
@ -227,7 +232,7 @@ jobs:
|
||||||
- if: steps.cache-mod_h2.outputs.cache-hit != 'true'
|
- if: steps.cache-mod_h2.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
cd $HOME
|
cd $HOME
|
||||||
git clone --quiet --depth=1 -b ${{ env.mod_h2-version }} https://github.com/icing/mod_h2
|
git clone --quiet --depth=1 -b v${{ env.mod_h2-version }} https://github.com/icing/mod_h2
|
||||||
cd mod_h2
|
cd mod_h2
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
./configure
|
./configure
|
||||||
|
|
22
.github/workflows/osslq-linux.yml
vendored
22
.github/workflows/osslq-linux.yml
vendored
|
@ -46,12 +46,18 @@ permissions: {}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
MAKEFLAGS: -j 3
|
MAKEFLAGS: -j 3
|
||||||
|
# handled in renovate.json
|
||||||
openssl3-version: openssl-3.3.0
|
openssl3-version: openssl-3.3.0
|
||||||
|
# unhandled
|
||||||
quictls-version: 3.1.4+quic
|
quictls-version: 3.1.4+quic
|
||||||
nghttp3-version: v1.2.0
|
# renovate: datasource=github-tags depName=ngtcp2/nghttp3 versioning=semver registryUrl=https://github.com
|
||||||
ngtcp2-version: v1.4.0
|
nghttp3-version: 1.2.0
|
||||||
nghttp2-version: v1.61.0
|
# renovate: datasource=github-tags depName=ngtcp2/ngtcp2 versioning=semver registryUrl=https://github.com
|
||||||
mod_h2-version: v2.0.27
|
ngtcp2-version: 1.4.0
|
||||||
|
# renovate: datasource=github-tags depName=nghttp2/nghttp2 versioning=semver registryUrl=https://github.com
|
||||||
|
nghttp2-version: 1.61.0
|
||||||
|
# renovate: datasource=github-tags depName=icing/mod_h2 versioning=semver registryUrl=https://github.com
|
||||||
|
mod_h2-version: 2.0.27
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
autotools:
|
autotools:
|
||||||
|
@ -147,7 +153,7 @@ jobs:
|
||||||
- if: steps.cache-nghttp3.outputs.cache-hit != 'true'
|
- if: steps.cache-nghttp3.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
cd $HOME
|
cd $HOME
|
||||||
git clone --quiet --depth=1 -b ${{ env.nghttp3-version }} https://github.com/ngtcp2/nghttp3
|
git clone --quiet --depth=1 -b v${{ env.nghttp3-version }} https://github.com/ngtcp2/nghttp3
|
||||||
cd nghttp3
|
cd nghttp3
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
|
@ -162,7 +168,7 @@ jobs:
|
||||||
|
|
||||||
# depends on all other cached libs built so far
|
# depends on all other cached libs built so far
|
||||||
- run: |
|
- run: |
|
||||||
git clone --quiet --depth=1 -b ${{ env.ngtcp2-version }} https://github.com/ngtcp2/ngtcp2
|
git clone --quiet --depth=1 -b v${{ env.ngtcp2-version }} https://github.com/ngtcp2/ngtcp2
|
||||||
cd ngtcp2
|
cd ngtcp2
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-lib-only --with-openssl
|
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-lib-only --with-openssl
|
||||||
|
@ -171,7 +177,7 @@ jobs:
|
||||||
|
|
||||||
# depends on all other cached libs built so far
|
# depends on all other cached libs built so far
|
||||||
- run: |
|
- run: |
|
||||||
git clone --quiet --depth=1 -b ${{ env.nghttp2-version }} https://github.com/nghttp2/nghttp2
|
git clone --quiet --depth=1 -b v${{ env.nghttp2-version }} https://github.com/nghttp2/nghttp2
|
||||||
cd nghttp2
|
cd nghttp2
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-http3
|
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-http3
|
||||||
|
@ -190,7 +196,7 @@ jobs:
|
||||||
- if: steps.cache-mod_h2.outputs.cache-hit != 'true'
|
- if: steps.cache-mod_h2.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
cd $HOME
|
cd $HOME
|
||||||
git clone --quiet --depth=1 -b ${{ env.mod_h2-version }} https://github.com/icing/mod_h2
|
git clone --quiet --depth=1 -b v${{ env.mod_h2-version }} https://github.com/icing/mod_h2
|
||||||
cd mod_h2
|
cd mod_h2
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
./configure
|
./configure
|
||||||
|
|
22
.github/workflows/quiche-linux.yml
vendored
22
.github/workflows/quiche-linux.yml
vendored
|
@ -46,12 +46,18 @@ permissions: {}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
MAKEFLAGS: -j 3
|
MAKEFLAGS: -j 3
|
||||||
|
# unhandled
|
||||||
openssl-version: 3.1.4+quic
|
openssl-version: 3.1.4+quic
|
||||||
nghttp3-version: v1.2.0
|
# renovate: datasource=github-tags depName=ngtcp2/nghttp3 versioning=semver registryUrl=https://github.com
|
||||||
ngtcp2-version: v1.4.0
|
nghttp3-version: 1.2.0
|
||||||
nghttp2-version: v1.61.0
|
# renovate: datasource=github-tags depName=ngtcp2/ngtcp2 versioning=semver registryUrl=https://github.com
|
||||||
|
ngtcp2-version: 1.4.0
|
||||||
|
# renovate: datasource=github-tags depName=nghttp2/nghttp2 versioning=semver registryUrl=https://github.com
|
||||||
|
nghttp2-version: 1.61.0
|
||||||
|
# renovate: datasource=github-tags depName=cloudflare/quiche versioning=semver registryUrl=https://github.com
|
||||||
quiche-version: 0.20.0
|
quiche-version: 0.20.0
|
||||||
mod_h2-version: v2.0.27
|
# renovate: datasource=github-tags depName=icing/mod_h2 versioning=semver registryUrl=https://github.com
|
||||||
|
mod_h2-version: 2.0.27
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
autotools:
|
autotools:
|
||||||
|
@ -101,7 +107,7 @@ jobs:
|
||||||
|
|
||||||
- if: steps.cache-nghttpx.outputs.cache-hit != 'true'
|
- if: steps.cache-nghttpx.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
git clone --quiet --depth=1 -b ${{ env.nghttp3-version }} https://github.com/ngtcp2/nghttp3
|
git clone --quiet --depth=1 -b v${{ env.nghttp3-version }} https://github.com/ngtcp2/nghttp3
|
||||||
cd nghttp3
|
cd nghttp3
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
|
@ -111,7 +117,7 @@ jobs:
|
||||||
|
|
||||||
- if: steps.cache-nghttpx.outputs.cache-hit != 'true'
|
- if: steps.cache-nghttpx.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
git clone --quiet --depth=1 -b ${{ env.ngtcp2-version }} https://github.com/ngtcp2/ngtcp2
|
git clone --quiet --depth=1 -b v${{ env.ngtcp2-version }} https://github.com/ngtcp2/ngtcp2
|
||||||
cd ngtcp2
|
cd ngtcp2
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-lib-only --with-openssl
|
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-lib-only --with-openssl
|
||||||
|
@ -120,7 +126,7 @@ jobs:
|
||||||
|
|
||||||
- if: steps.cache-nghttpx.outputs.cache-hit != 'true'
|
- if: steps.cache-nghttpx.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
git clone --quiet --depth=1 -b ${{ env.nghttp2-version }} https://github.com/nghttp2/nghttp2
|
git clone --quiet --depth=1 -b v${{ env.nghttp2-version }} https://github.com/nghttp2/nghttp2
|
||||||
cd nghttp2
|
cd nghttp2
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-http3
|
./configure --prefix=$HOME/nghttpx PKG_CONFIG_PATH="$HOME/nghttpx/lib/pkgconfig" --enable-http3
|
||||||
|
@ -167,7 +173,7 @@ jobs:
|
||||||
- if: steps.cache-mod_h2.outputs.cache-hit != 'true'
|
- if: steps.cache-mod_h2.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
cd $HOME
|
cd $HOME
|
||||||
git clone --quiet --depth=1 -b ${{ env.mod_h2-version }} https://github.com/icing/mod_h2
|
git clone --quiet --depth=1 -b v${{ env.mod_h2-version }} https://github.com/icing/mod_h2
|
||||||
cd mod_h2
|
cd mod_h2
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
./configure
|
./configure
|
||||||
|
|
6
.github/workflows/wolfssl.yml
vendored
6
.github/workflows/wolfssl.yml
vendored
|
@ -73,8 +73,10 @@ jobs:
|
||||||
sudo python3 -m pip install impacket
|
sudo python3 -m pip install impacket
|
||||||
name: 'install prereqs and impacket'
|
name: 'install prereqs and impacket'
|
||||||
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
WOLFSSL_VER=5.6.3
|
source .github/scripts/VERSIONS
|
||||||
curl -LOsSf --retry 6 --retry-connrefused --max-time 999 https://github.com/wolfSSL/wolfssl/archive/v$WOLFSSL_VER-stable.tar.gz
|
curl -LOsSf --retry 6 --retry-connrefused --max-time 999 https://github.com/wolfSSL/wolfssl/archive/v$WOLFSSL_VER-stable.tar.gz
|
||||||
tar -xzf v$WOLFSSL_VER-stable.tar.gz
|
tar -xzf v$WOLFSSL_VER-stable.tar.gz
|
||||||
cd wolfssl-$WOLFSSL_VER-stable
|
cd wolfssl-$WOLFSSL_VER-stable
|
||||||
|
@ -83,8 +85,6 @@ jobs:
|
||||||
make install
|
make install
|
||||||
name: 'install wolfssl'
|
name: 'install wolfssl'
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- run: autoreconf -fi
|
- run: autoreconf -fi
|
||||||
name: 'autoreconf'
|
name: 'autoreconf'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user