mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
af79508f7e
fab98992043f47fa7240d7c1217920d0c4f783a2 test: Try once more when RPC connection fails on Windows (MarcoFalke) faa655731eac751d4eb494268e2c815493ba9382 test: Document why connection is re-constructed on windows (MarcoFalke) fa9f4f663c36b0824406036445e5cff0a78174e9 test: Remove python 3.4 workaround (MarcoFalke) fae760f2b24cb26494b65c0a7ac38b92ead345af cirrus: Bump freebsd to 12.1 (MarcoFalke) Pull request description: Fixes: #18548 ACKs for top commit: hebasto: ACK fab98992043f47fa7240d7c1217920d0c4f783a2, I have reviewed the code and it looks OK, I agree it can be merged. Tree-SHA512: c4e9ed8d995b63a820ca66984f152ac216c83ba1f318b61b15c6d375c0e936c08f6bc3d38c255dddf3ee8952f848c7ababf684854e07a7c1b1d8504e6b7208ba
30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
task:
|
|
name: "FreeBsd 12.1 amd64 [GOAL: install] [no depends, only system libs]"
|
|
freebsd_instance:
|
|
image_family: freebsd-12-1 # https://cirrus-ci.org/guide/FreeBSD/
|
|
cpu: 8
|
|
memory: 8G
|
|
timeout_in: 60m
|
|
env:
|
|
MAKEJOBS: "-j9"
|
|
CONFIGURE_OPTS: "--disable-dependency-tracking"
|
|
GOAL: "install"
|
|
CCACHE_SIZE: "200M"
|
|
CCACHE_COMPRESS: 1
|
|
CCACHE_DIR: "/tmp/ccache_dir"
|
|
ccache_cache:
|
|
folder: "/tmp/ccache_dir"
|
|
install_script:
|
|
- pkg install -y autoconf automake boost-libs git gmake libevent libtool openssl pkgconf python3 ccache
|
|
- ./contrib/install_db4.sh $(pwd)
|
|
- ccache --max-size=${CCACHE_SIZE}
|
|
configure_script:
|
|
- ./autogen.sh
|
|
- ./configure ${CONFIGURE_OPTS} BDB_LIBS="-L$(pwd)/db4/lib -ldb_cxx-4.8" BDB_CFLAGS="-I$(pwd)/db4/include" || ( cat config.log && false)
|
|
make_script:
|
|
- gmake ${MAKEJOBS} ${GOAL} || ( echo "Build failure. Verbose build follows." && gmake ${GOAL} V=1 ; false )
|
|
check_script:
|
|
- gmake check ${MAKEJOBS} VERBOSE=1
|
|
functional_test_script:
|
|
- ./test/functional/test_runner.py --jobs 9 --ci --extended --exclude feature_dbcrash --combinedlogslen=1000 --quiet --failfast
|