mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
4abb768456
fa272dfdff711e324baefc9bdbb2bf4b52d99eb0 ci: Properly bump to focal for win cross build (MarcoFalke) Pull request description: Fixes #21122 ACKs for top commit: fanquake: ACK fa272dfdff711e324baefc9bdbb2bf4b52d99eb0 - Looks good to me. I can see the wine version output, `wine-5.0 (Ubuntu 5.0-3ubuntu1)`, in the [log](https://cirrus-ci.com/task/5743559502462976), and `make check` is running. Tree-SHA512: cd37462afc5512e00cef5e9e7fd1bb5c43c600e833b30cdea2c1c443dc7b0e68f5f2cbaf9d7b655892059af0a226478211db1dc97c10fe4dcdfe666a784f3afc
22 lines
768 B
Bash
Executable File
22 lines
768 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2019-2020 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 CONTAINER_NAME=ci_win64
|
|
export HOST=x86_64-w64-mingw32
|
|
export DPKG_ADD_ARCH="i386"
|
|
export PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine-binfmt wine64 wine32 file"
|
|
export RUN_FUNCTIONAL_TESTS=false
|
|
export RUN_SECURITY_TESTS="false"
|
|
export GOAL="deploy"
|
|
export BITCOIN_CONFIG="--enable-gui --enable-reduce-exports --disable-miner --without-boost-process"
|
|
export DIRECT_WINE_EXEC_TESTS=true
|
|
|
|
# Compiler for MinGW-w64 causes false -Wreturn-type warning.
|
|
# See https://sourceforge.net/p/mingw-w64/bugs/306/
|
|
export NO_WERROR=1
|