diff options
author | fanquake <fanquake@gmail.com> | 2021-01-29 09:48:05 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-02-03 21:39:54 +0800 |
commit | 5baff2b31840bdbc465f55b875aa6e9480288215 (patch) | |
tree | c87164b9e1d5e8c2e7f60921ee8496e54e4891af /ci/test/00_setup_env_win64.sh | |
parent | ea96e17e1f2c2b0a949366260906ef02e560a425 (diff) |
build: use focal in gitian descriptors
Compilers used change as follows:
Linux native GCC 7.5 -> GCC 8.4
Linux cross GCC 8.4 -> GCC 8.4
Windows mingw-w64 7.3 -> mingw-w64 9.3
macOS Clang 8.0.0 -> Clang 8.0.0
The macOS and Win cross builds in the CI are updated to use Focal, and
per the op, running the security tests is disabled in the Windows
build.
Diffstat (limited to 'ci/test/00_setup_env_win64.sh')
-rw-r--r-- | ci/test/00_setup_env_win64.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ci/test/00_setup_env_win64.sh b/ci/test/00_setup_env_win64.sh index affaaaa1aa..74b773dcdd 100644 --- a/ci/test/00_setup_env_win64.sh +++ b/ci/test/00_setup_env_win64.sh @@ -7,11 +7,10 @@ export LC_ALL=C.UTF-8 export CONTAINER_NAME=ci_win64 -export DOCKER_NAME_TAG=ubuntu:18.04 # Check that bionic can cross-compile to win64 (bionic is used in the gitian build as well) +export DOCKER_NAME_TAG=ubuntu:20.04 # Check that Focal can cross-compile to win64 (Focal is used in the gitian build as well) export HOST=x86_64-w64-mingw32 export PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine-binfmt wine64 file" export RUN_FUNCTIONAL_TESTS=false -export RUN_SECURITY_TESTS="true" export GOAL="deploy" export BITCOIN_CONFIG="--enable-reduce-exports --disable-gui-tests --without-boost-process" |