mirror of
https://github.com/curl/curl.git
synced 2026-07-24 19:17:20 +03:00
CI: remove travis details
Rename still used leftovers to "zuul" as that's now the CI using them. Closes #7313
This commit is contained in:
parent
d7112b576e
commit
b7ca0cfec0
8 changed files with 3 additions and 121 deletions
180
scripts/zuul/before_script.sh
Executable file
180
scripts/zuul/before_script.sh
Executable file
|
|
@ -0,0 +1,180 @@
|
|||
#!/bin/bash
|
||||
#***************************************************************************
|
||||
# _ _ ____ _
|
||||
# Project ___| | | | _ \| |
|
||||
# / __| | | | |_) | |
|
||||
# | (__| |_| | _ <| |___
|
||||
# \___|\___/|_| \_\_____|
|
||||
#
|
||||
# Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
#
|
||||
# This software is licensed as described in the file COPYING, which
|
||||
# you should have received as part of this distribution. The terms
|
||||
# are also available at https://curl.se/docs/copyright.html.
|
||||
#
|
||||
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
||||
# copies of the Software, and permit persons to whom the Software is
|
||||
# furnished to do so, under the terms of the COPYING file.
|
||||
#
|
||||
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
# KIND, either express or implied.
|
||||
#
|
||||
###########################################################################
|
||||
set -eo pipefail
|
||||
|
||||
./buildconf
|
||||
|
||||
if [ "$NGTCP2" = yes ]; then
|
||||
if [ "$TRAVIS_OS_NAME" = linux -a "$GNUTLS" ]; then
|
||||
cd $HOME
|
||||
git clone --depth 1 https://gitlab.com/gnutls/nettle.git
|
||||
cd nettle
|
||||
./.bootstrap
|
||||
./configure LDFLAGS="-Wl,-rpath,$HOME/ngbuild/lib" --disable-documentation --prefix=$HOME/ngbuild
|
||||
make
|
||||
make install
|
||||
|
||||
cd $HOME
|
||||
git clone --depth 1 https://gitlab.com/gnutls/gnutls.git pgtls
|
||||
cd pgtls
|
||||
./bootstrap
|
||||
./configure PKG_CONFIG_PATH=$HOME/ngbuild/lib/pkgconfig LDFLAGS="-Wl,-rpath,$HOME/ngbuild/lib" --with-included-libtasn1 --with-included-unistring --disable-guile --disable-doc --prefix=$HOME/ngbuild
|
||||
make
|
||||
make install
|
||||
else
|
||||
cd $HOME
|
||||
git clone --depth 1 -b OpenSSL_1_1_1j+quic https://github.com/quictls/openssl possl
|
||||
cd possl
|
||||
./config enable-tls1_3 --prefix=$HOME/ngbuild
|
||||
make
|
||||
make install_sw
|
||||
fi
|
||||
|
||||
cd $HOME
|
||||
git clone --depth 1 https://github.com/ngtcp2/nghttp3
|
||||
cd nghttp3
|
||||
autoreconf -i
|
||||
./configure --prefix=$HOME/ngbuild --enable-lib-only
|
||||
make
|
||||
make install
|
||||
|
||||
cd $HOME
|
||||
git clone --depth 1 https://github.com/ngtcp2/ngtcp2
|
||||
cd ngtcp2
|
||||
autoreconf -i
|
||||
if test -n "$GNUTLS"; then
|
||||
WITHGNUTLS="--with-gnutls"
|
||||
fi
|
||||
./configure PKG_CONFIG_PATH=$HOME/ngbuild/lib/pkgconfig LDFLAGS="-Wl,-rpath,$HOME/ngbuild/lib" --prefix=$HOME/ngbuild --enable-lib-only $WITHGNUTLS
|
||||
make
|
||||
make install
|
||||
fi
|
||||
|
||||
if [ "$TRAVIS_OS_NAME" = linux -a "$BORINGSSL" ]; then
|
||||
cd $HOME
|
||||
git clone --depth=1 https://boringssl.googlesource.com/boringssl
|
||||
cd boringssl
|
||||
CXX="g++" CC="gcc" cmake -H. -Bbuild -GNinja -DCMAKE_BUILD_TYPE=release -DBUILD_SHARED_LIBS=1
|
||||
cmake --build build
|
||||
mkdir lib
|
||||
cp ./build/crypto/libcrypto.so ./lib/
|
||||
cp ./build/ssl/libssl.so ./lib/
|
||||
echo "BoringSSL lib dir: "`pwd`"/lib"
|
||||
cmake --build build --target clean
|
||||
rm -f build/CMakeCache.txt
|
||||
CXX="g++" CC="gcc" cmake -H. -Bbuild -GNinja -DCMAKE_POSITION_INDEPENDENT_CODE=on
|
||||
cmake --build build
|
||||
export LIBS=-lpthread
|
||||
fi
|
||||
|
||||
if [ "$TRAVIS_OS_NAME" = linux -a "$OPENSSL3" ]; then
|
||||
cd $HOME
|
||||
git clone --depth=1 https://github.com/openssl/openssl
|
||||
cd openssl
|
||||
./config enable-tls1_3 --prefix=$HOME/openssl3
|
||||
make
|
||||
make install_sw
|
||||
fi
|
||||
|
||||
if [ "$TRAVIS_OS_NAME" = linux -a "$LIBRESSL" ]; then
|
||||
cd $HOME
|
||||
git clone --depth=1 -b v3.1.4 https://github.com/libressl-portable/portable.git libressl-git
|
||||
cd libressl-git
|
||||
./autogen.sh
|
||||
./configure --prefix=$HOME/libressl
|
||||
make
|
||||
make install
|
||||
fi
|
||||
|
||||
if [ "$TRAVIS_OS_NAME" = linux -a "$QUICHE" ]; then
|
||||
cd $HOME
|
||||
git clone --depth=1 --recursive https://github.com/cloudflare/quiche.git
|
||||
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||
source $HOME/.cargo/env
|
||||
cd $HOME/quiche
|
||||
cargo build -v --release --features ffi,pkg-config-meta,qlog
|
||||
mkdir -v deps/boringssl/src/lib
|
||||
ln -vnf $(find target/release -name libcrypto.a -o -name libssl.a) deps/boringssl/src/lib/
|
||||
fi
|
||||
|
||||
if [ "$TRAVIS_OS_NAME" = linux -a "$RUSTLS_VERSION" ]; then
|
||||
cd $HOME
|
||||
git clone --depth=1 --recursive https://github.com/rustls/rustls-ffi.git -b "$RUSTLS_VERSION"
|
||||
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||
source $HOME/.cargo/env
|
||||
cargo install cbindgen
|
||||
cd $HOME/crustls
|
||||
make
|
||||
make DESTDIR=$HOME/crust install
|
||||
fi
|
||||
|
||||
if [ $TRAVIS_OS_NAME = linux -a "$WOLFSSL" ]; then
|
||||
if [ ! -e $HOME/wolfssl-4.7.0-stable/Makefile ]; then
|
||||
cd $HOME
|
||||
curl -LO https://github.com/wolfSSL/wolfssl/archive/v4.7.0-stable.tar.gz
|
||||
tar -xzf v4.7.0-stable.tar.gz
|
||||
cd wolfssl-4.7.0-stable
|
||||
./autogen.sh
|
||||
./configure --enable-tls13 --enable-all
|
||||
touch wolfssl/wolfcrypt/fips.h
|
||||
make
|
||||
fi
|
||||
|
||||
cd $HOME/wolfssl-4.7.0-stable
|
||||
sudo make install
|
||||
fi
|
||||
|
||||
# Install common libraries.
|
||||
if [ $TRAVIS_OS_NAME = linux ]; then
|
||||
|
||||
if [ "$MESALINK" = "yes" ]; then
|
||||
if [ ! -e $HOME/mesalink-1.0.0/Makefile ]; then
|
||||
cd $HOME
|
||||
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||
source $HOME/.cargo/env
|
||||
curl -LO https://github.com/mesalock-linux/mesalink/archive/v1.0.0.tar.gz
|
||||
tar -xzf v1.0.0.tar.gz
|
||||
cd mesalink-1.0.0
|
||||
./autogen.sh
|
||||
./configure --enable-tls13
|
||||
make
|
||||
fi
|
||||
cd $HOME/mesalink-1.0.0
|
||||
sudo make install
|
||||
|
||||
fi
|
||||
|
||||
if [ "$BEARSSL" = "yes" ]; then
|
||||
if [ ! -e $HOME/bearssl-0.6/Makefile ]; then
|
||||
cd $HOME
|
||||
curl -LO https://bearssl.org/bearssl-0.6.tar.gz
|
||||
tar -xzf bearssl-0.6.tar.gz
|
||||
cd bearssl-0.6
|
||||
make
|
||||
fi
|
||||
cd $HOME/bearssl-0.6
|
||||
sudo cp inc/*.h /usr/local/include
|
||||
sudo cp build/libbearssl.* /usr/local/lib
|
||||
fi
|
||||
|
||||
fi
|
||||
22
scripts/zuul/iconv-env.sh
Executable file
22
scripts/zuul/iconv-env.sh
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
#***************************************************************************
|
||||
# _ _ ____ _
|
||||
# Project ___| | | | _ \| |
|
||||
# / __| | | | |_) | |
|
||||
# | (__| |_| | _ <| |___
|
||||
# \___|\___/|_| \_\_____|
|
||||
#
|
||||
# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
#
|
||||
# This software is licensed as described in the file COPYING, which
|
||||
# you should have received as part of this distribution. The terms
|
||||
# are also available at https://curl.se/docs/copyright.html.
|
||||
#
|
||||
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
||||
# copies of the Software, and permit persons to whom the Software is
|
||||
# furnished to do so, under the terms of the COPYING file.
|
||||
#
|
||||
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
# KIND, either express or implied.
|
||||
#
|
||||
###########################################################################
|
||||
export CPPFLAGS="-DCURL_DOES_CONVERSIONS -DHAVE_ICONV -DCURL_ICONV_CODESET_OF_HOST='\"ISO8859-1\"'"
|
||||
182
scripts/zuul/script.sh
Executable file
182
scripts/zuul/script.sh
Executable file
|
|
@ -0,0 +1,182 @@
|
|||
#!/bin/bash
|
||||
#***************************************************************************
|
||||
# _ _ ____ _
|
||||
# Project ___| | | | _ \| |
|
||||
# / __| | | | |_) | |
|
||||
# | (__| |_| | _ <| |___
|
||||
# \___|\___/|_| \_\_____|
|
||||
#
|
||||
# Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
#
|
||||
# This software is licensed as described in the file COPYING, which
|
||||
# you should have received as part of this distribution. The terms
|
||||
# are also available at https://curl.se/docs/copyright.html.
|
||||
#
|
||||
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
||||
# copies of the Software, and permit persons to whom the Software is
|
||||
# furnished to do so, under the terms of the COPYING file.
|
||||
#
|
||||
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
# KIND, either express or implied.
|
||||
#
|
||||
###########################################################################
|
||||
set -eo pipefail
|
||||
|
||||
./buildconf
|
||||
|
||||
if [ "$T" = "coverage" ]; then
|
||||
./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2
|
||||
make
|
||||
make TFLAGS=-n test-nonflaky
|
||||
make "TFLAGS=-n -e" test-nonflaky
|
||||
tests="1 200 300 500 700 800 900 1000 1100 1200 1302 1400 1502 3000"
|
||||
make "TFLAGS=-n -t $tests" test-nonflaky
|
||||
coveralls --gcov /usr/bin/gcov-8 --gcov-options '\-lp' -i src -e lib -e tests -e docs -b $PWD/src
|
||||
coveralls --gcov /usr/bin/gcov-8 --gcov-options '\-lp' -e src -i lib -e tests -e docs -b $PWD/lib
|
||||
fi
|
||||
|
||||
if [ "$T" = "torture" ]; then
|
||||
./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2 --with-openssl
|
||||
make
|
||||
tests="!TLS-SRP !FTP"
|
||||
make "TFLAGS=-n --shallow=20 -t $tests" test-nonflaky
|
||||
fi
|
||||
|
||||
if [ "$T" = "events" ]; then
|
||||
./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2 --with-openssl
|
||||
make
|
||||
tests="!TLS-SRP"
|
||||
make "TFLAGS=-n -e $tests" test-nonflaky
|
||||
fi
|
||||
|
||||
if [ "$T" = "debug" ]; then
|
||||
./configure --enable-debug --enable-werror $C
|
||||
make
|
||||
make examples
|
||||
if [ -z $NOTESTS ]; then
|
||||
make test-nonflaky
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$T" = "debug-wolfssl" ]; then
|
||||
./configure --enable-debug --enable-werror $C
|
||||
make
|
||||
make "TFLAGS=-n !313" test-nonflaky
|
||||
fi
|
||||
|
||||
if [ "$T" = "debug-mesalink" ]; then
|
||||
./configure --enable-debug --enable-werror $C
|
||||
make
|
||||
make "TFLAGS=-n !313 !410 !3001" test-nonflaky
|
||||
fi
|
||||
|
||||
if [ "$T" = "debug-rustls" ]; then
|
||||
./configure --enable-debug --enable-werror $C
|
||||
make
|
||||
make "TFLAGS=HTTPS !313" test-nonflaky
|
||||
fi
|
||||
|
||||
if [ "$T" = "debug-bearssl" ]; then
|
||||
./configure --enable-debug --enable-werror $C
|
||||
make
|
||||
make "TFLAGS=-n !313" test-nonflaky
|
||||
fi
|
||||
|
||||
if [ "$T" = "novalgrind" ]; then
|
||||
./configure --enable-werror $C
|
||||
make
|
||||
make examples
|
||||
make TFLAGS=-n test-nonflaky
|
||||
fi
|
||||
|
||||
if [ "$T" = "normal" ]; then
|
||||
if [ $TRAVIS_OS_NAME = linux ]; then
|
||||
# Remove system curl to make sure we don't rely on it.
|
||||
# Only done on Linux since we're not permitted to on mac.
|
||||
sudo rm -f /usr/bin/curl
|
||||
fi
|
||||
./configure --enable-warnings --enable-werror $C
|
||||
make
|
||||
make examples
|
||||
if [ -z $NOTESTS ]; then
|
||||
make test-nonflaky
|
||||
fi
|
||||
if [ -n "$CHECKSRC" ]; then
|
||||
make checksrc
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$T" = "tidy" ]; then
|
||||
./configure --enable-warnings --enable-werror $C
|
||||
make
|
||||
make tidy
|
||||
fi
|
||||
|
||||
if [ "$T" = "iconv" ]; then
|
||||
source scripts/zuul/iconv-env.sh
|
||||
./configure --enable-debug --enable-werror $C
|
||||
make
|
||||
make examples
|
||||
make test-nonflaky
|
||||
fi
|
||||
|
||||
if [ "$T" = "cmake" ]; then
|
||||
cmake -H. -Bbuild -DCURL_WERROR=ON $C
|
||||
cmake --build build
|
||||
env TFLAGS="!1139 $TFLAGS" cmake --build build --target test-nonflaky
|
||||
fi
|
||||
|
||||
if [ "$T" = "distcheck" ]; then
|
||||
# find BOM markers and exit if we do
|
||||
! git grep `printf '\xef\xbb\xbf'`
|
||||
./configure --without-ssl
|
||||
make
|
||||
./maketgz 99.98.97
|
||||
# verify in-tree build - and install it
|
||||
tar xf curl-99.98.97.tar.gz
|
||||
cd curl-99.98.97
|
||||
./configure --prefix=$HOME/temp --without-ssl
|
||||
make
|
||||
make TFLAGS=1 test
|
||||
make install
|
||||
# basic check of the installed files
|
||||
cd ..
|
||||
bash scripts/installcheck.sh $HOME/temp
|
||||
rm -rf curl-99.98.97
|
||||
# verify out-of-tree build
|
||||
tar xf curl-99.98.97.tar.gz
|
||||
touch curl-99.98.97/docs/{cmdline-opts,libcurl}/Makefile.inc
|
||||
mkdir build
|
||||
cd build
|
||||
../curl-99.98.97/configure --without-ssl
|
||||
make
|
||||
make TFLAGS='-p 1 1139' test
|
||||
# verify cmake build
|
||||
cd ..
|
||||
rm -rf curl-99.98.97
|
||||
tar xf curl-99.98.97.tar.gz
|
||||
cd curl-99.98.97
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make
|
||||
cd ../..
|
||||
fi
|
||||
|
||||
if [ "$T" = "fuzzer" ]; then
|
||||
# Download the fuzzer to a temporary folder
|
||||
./tests/fuzz/download_fuzzer.sh /tmp/curl_fuzzer
|
||||
|
||||
export CURLSRC=$PWD
|
||||
|
||||
# Run the mainline fuzzer test
|
||||
pushd /tmp/curl_fuzzer
|
||||
./mainline.sh ${CURLSRC}
|
||||
popd
|
||||
fi
|
||||
|
||||
if [ "$T" = "scan-build" ]; then
|
||||
scan-build ./configure --enable-debug --enable-werror $C
|
||||
scan-build --status-bugs make
|
||||
scan-build --status-bugs make examples
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue