Skip to content

Commit c31cbe7

Browse files
committed
Add C++17 test to Travis
1 parent 7829685 commit c31cbe7

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,11 @@ jobs:
148148
env: >-
149149
FILE_ENV="./ci/test/00_setup_env_native_valgrind.sh"
150150
151+
- stage: test
152+
name: 'x86_64 Linux [GOAL: install] [bionic] [no depends, only system libs, c++17]'
153+
env: >-
154+
FILE_ENV="./ci/test/00_setup_env_native_cxx17.sh"
155+
151156
- stage: test
152157
name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, sanitizers: fuzzer,address,undefined]'
153158
env: >-

ci/test/00_setup_env_native_cxx17.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Copyright (c) 2020 The Bitcoin Core developers
4+
# Distributed under the MIT software license, see the accompanying
5+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
6+
7+
export LC_ALL=C.UTF-8
8+
9+
export CONTAINER_NAME=ci_native_cxx17
10+
export PACKAGES="python3-zmq libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-test-dev libboost-thread-dev libdb5.3++-dev libminiupnpc-dev libzmq3-dev"
11+
export NO_DEPENDS=1
12+
export GOAL="install"
13+
export BITCOIN_CONFIG="--enable-zmq --with-incompatible-bdb --enable-c++17"

0 commit comments

Comments
 (0)