mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
14a67ee85e
2f6fe4e4e9e9e35e713c0a20cf891b023592110a ci: Build with --enable-werror by default, and document exceptions (Hennadii Stepanov) Pull request description: This PR prevents introducing of new compiler warnings in the master branch, e.g., #19986, #20162. ACKs for top commit: practicalswift: cr ACK 2f6fe4e4e9e9e35e713c0a20cf891b023592110a: patch looks correct MarcoFalke: re-ACK 2f6fe4e4e9 🏏 vasild: ACK 2f6fe4e Tree-SHA512: 23b5feb5bc472658c992d882ef61af23496f25adaa19f9c79bfaef5d2db273d44981aa93b1631a7d37cb58755283c1dacf3f2d68e501522d3fa8c965ab646d19
22 lines
761 B
Bash
Executable File
22 lines
761 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 PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine-binfmt wine64 file"
|
|
export DPKG_ADD_ARCH="i386"
|
|
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
|