mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-09-11 21:20:39 +02:00
23 lines
659 B
Bash
Executable File
23 lines
659 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2019-present 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_msvcrt
|
|
export CI_IMAGE_NAME_TAG="mirror.gcr.io/ubuntu:26.04"
|
|
export HOST=x86_64-w64-mingw32
|
|
export PACKAGES="nix-bin nix-setup-systemd"
|
|
export RUN_UNIT_TESTS=false
|
|
export RUN_FUNCTIONAL_TESTS=false
|
|
export GOAL="deploy"
|
|
export BITCOIN_CONFIG="\
|
|
--preset=dev-mode \
|
|
-DENABLE_IPC=OFF \
|
|
-DWITH_USDT=OFF \
|
|
-DREDUCE_EXPORTS=ON \
|
|
-DCMAKE_CXX_FLAGS='-Wno-error=maybe-uninitialized' \
|
|
"
|