2019-08-15 22:51:31 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2023-08-16 19:27:31 +02:00
|
|
|
# Copyright (c) 2019-2020 The Bitcoin Core developers
|
2019-08-15 22:51:31 +02:00
|
|
|
# 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
|
|
|
|
|
2020-02-10 14:50:29 +01:00
|
|
|
export CONTAINER_NAME=ci_win64
|
2019-08-15 22:51:31 +02:00
|
|
|
export HOST=x86_64-w64-mingw32
|
2022-04-07 18:03:41 +02:00
|
|
|
export DPKG_ADD_ARCH="i386"
|
2022-05-29 23:00:35 +02:00
|
|
|
export PACKAGES="python3 nsis g++-mingw-w64-x86-64-posix wine-binfmt wine64 wine32 file"
|
2024-01-19 22:48:01 +01:00
|
|
|
export RUN_FUNCTIONAL_TESTS=false
|
2023-06-04 20:06:00 +02:00
|
|
|
export RUN_SECURITY_TESTS="false"
|
2019-08-15 22:51:31 +02:00
|
|
|
export GOAL="deploy"
|
2020-08-05 13:21:24 +02:00
|
|
|
export BITCOIN_CONFIG="--enable-gui --enable-reduce-exports --disable-miner --without-boost-process"
|
2022-04-07 18:03:41 +02:00
|
|
|
export DIRECT_WINE_EXEC_TESTS=true
|