ci: add sqlite-only linux64 test build

This commit is contained in:
Kittywhiskers Van Gogh 2023-02-16 12:27:47 +00:00 committed by PastaPastaPasta
parent 0923511c25
commit daa40ea8c6
3 changed files with 28 additions and 0 deletions

View File

@ -251,6 +251,13 @@ linux64_cxx20-build:
variables:
BUILD_TARGET: linux64_cxx20
linux64_sqlite-build:
extends: .build-template
needs:
- x86_64-pc-linux-gnu-debug
variables:
BUILD_TARGET: linux64_sqlite
linux64_fuzz-build:
extends: .build-template
needs:
@ -312,6 +319,13 @@ linux64-test:
variables:
BUILD_TARGET: linux64
linux64_sqlite-test:
extends: .test-template
needs:
- linux64_sqlite-build
variables:
BUILD_TARGET: linux64_sqlite
linux64_tsan-test:
extends:
- .test-template

View File

@ -30,6 +30,8 @@ elif [ "$BUILD_TARGET" = "linux64_fuzz" ]; then
source ./ci/test/00_setup_env_native_fuzz.sh
elif [ "$BUILD_TARGET" = "linux64_cxx20" ]; then
source ./ci/test/00_setup_env_native_cxx20.sh
elif [ "$BUILD_TARGET" = "linux64_sqlite" ]; then
source ./ci/test/00_setup_env_native_sqlite.sh
elif [ "$BUILD_TARGET" = "linux64_nowallet" ]; then
source ./ci/test/00_setup_env_native_nowallet.sh
elif [ "$BUILD_TARGET" = "mac" ]; then

View File

@ -0,0 +1,12 @@
#!/usr/bin/env bash
#
# Copyright (c) 2019 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
export LC_ALL=C.UTF-8
export PACKAGES="python3-zmq qtbase5-dev qttools5-dev-tools libdbus-1-dev libharfbuzz-dev"
export DEP_OPTS="NO_BDB=1 NO_UPNP=1 DEBUG=1"
export GOAL="install"
export BITCOIN_CONFIG="--enable-zmq --enable-glibc-back-compat --enable-reduce-exports --with-sqlite --without-bdb LDFLAGS=-static-libstdc++"