Skip to content

Commit 1db71d4

Browse files
committed
Add names to Travis jobs
This also removes job name comments from .travis.yml because they are no longer necessary
1 parent feda41e commit 1db71d4

File tree

1 file changed

+20
-10
lines changed

1 file changed

+20
-10
lines changed

.travis.yml

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ after_script:
3838
- echo $TRAVIS_COMMIT_LOG
3939
jobs:
4040
include:
41-
# lint stage
41+
4242
- stage: lint
43+
name: 'lint'
4344
env:
4445
cache: false
4546
language: python
@@ -50,8 +51,9 @@ jobs:
5051
- set -o errexit; source .travis/lint_05_before_script.sh
5152
script:
5253
- set -o errexit; source .travis/lint_06_script.sh
53-
# ARM
54+
5455
- stage: test
56+
name: 'ARM [GOAL: install] [no unit or functional tests]'
5557
env: >-
5658
HOST=arm-linux-gnueabihf
5759
PACKAGES="python3 g++-arm-linux-gnueabihf"
@@ -61,65 +63,73 @@ jobs:
6163
# -Wno-psabi is to disable ABI warnings: "note: parameter passing for argument of type ... changed in GCC 7.1"
6264
# This could be removed once the ABI change warning does not show up by default
6365
BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports CXXFLAGS=-Wno-psabi"
64-
# Win32
66+
6567
- stage: test
68+
name: 'Win32 [GOAL: deploy] [no gui tests]'
6669
env: >-
6770
HOST=i686-w64-mingw32
6871
DPKG_ADD_ARCH="i386"
6972
PACKAGES="python3 nsis g++-mingw-w64-i686 wine-binfmt wine32"
7073
GOAL="deploy"
7174
BITCOIN_CONFIG="--enable-reduce-exports --disable-gui-tests"
72-
# Win64
75+
7376
- stage: test
77+
name: 'Win64 [GOAL: deploy] [no gui tests]'
7478
env: >-
7579
HOST=x86_64-w64-mingw32
7680
PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine-binfmt wine64"
7781
GOAL="deploy"
7882
BITCOIN_CONFIG="--enable-reduce-exports --disable-gui-tests"
79-
# 32-bit + dash
83+
8084
- stage: test
85+
name: '32-bit + dash [GOAL: install]'
8186
env: >-
8287
HOST=i686-pc-linux-gnu
8388
PACKAGES="g++-multilib python3-zmq"
8489
GOAL="install"
8590
BITCOIN_CONFIG="--enable-zmq --enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++"
8691
CONFIG_SHELL="/bin/dash"
87-
# x86_64 Linux (uses qt5 dev package instead of depends Qt to speed up build and avoid timeout)
92+
8893
- stage: test
94+
name: 'x86_64 Linux [GOAL: install] [bionic] [uses qt5 dev package instead of depends Qt to speed up build and avoid timeout]'
8995
env: >-
9096
HOST=x86_64-unknown-linux-gnu
9197
PACKAGES="python3-zmq qtbase5-dev qttools5-dev-tools protobuf-compiler libdbus-1-dev libharfbuzz-dev libprotobuf-dev"
9298
DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1 ALLOW_HOST_PACKAGES=1"
9399
GOAL="install"
94100
BITCOIN_CONFIG="--enable-zmq --with-gui=qt5 --enable-glibc-back-compat --enable-reduce-exports --enable-debug CXXFLAGS=\"-g0 -O2\""
95-
# x86_64 Linux (xenial, no depends, only system libs, sanitizers: thread (TSan))
101+
96102
- stage: test
103+
name: 'x86_64 Linux [GOAL: install] [xenial] [no depends, only system libs, sanitizers: thread (TSan), no wallet]'
97104
env: >-
98105
HOST=x86_64-unknown-linux-gnu
99106
DOCKER_NAME_TAG=ubuntu:16.04
100107
PACKAGES="clang llvm python3-zmq qtbase5-dev qttools5-dev-tools libssl-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev libdb5.3++-dev libminiupnpc-dev libzmq3-dev libprotobuf-dev protobuf-compiler libqrencode-dev"
101108
NO_DEPENDS=1
102109
GOAL="install"
103110
BITCOIN_CONFIG="--enable-zmq --disable-wallet --with-gui=qt5 CPPFLAGS=-DDEBUG_LOCKORDER --with-sanitizers=thread --disable-hardening --disable-asm CC=clang CXX=clang++"
104-
# x86_64 Linux (no depends, only system libs, sanitizers: address/leak (ASan + LSan) + undefined (UBSan) + integer)
111+
105112
- stage: test
113+
name: 'x86_64 Linux [GOAL: install] [bionic] [no depends, only system libs, sanitizers: address/leak (ASan + LSan) + undefined (UBSan) + integer]'
106114
env: >-
107115
HOST=x86_64-unknown-linux-gnu
108116
PACKAGES="clang llvm python3-zmq qtbase5-dev qttools5-dev-tools libssl1.0-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev libdb5.3++-dev libminiupnpc-dev libzmq3-dev libprotobuf-dev protobuf-compiler libqrencode-dev"
109117
NO_DEPENDS=1
110118
FUNCTIONAL_TESTS_CONFIG="--exclude wallet_multiwallet.py" # Temporarily suppress ASan heap-use-after-free (see issue #14163)
111119
GOAL="install"
112120
BITCOIN_CONFIG="--enable-zmq --with-incompatible-bdb --with-gui=qt5 CPPFLAGS=-DDEBUG_LOCKORDER --with-sanitizers=address,integer,undefined CC=clang CXX=clang++"
113-
# x86_64 Linux, No wallet
121+
114122
- stage: test
123+
name: 'x86_64 Linux [GOAL: install] [bionic] [no wallet]'
115124
env: >-
116125
HOST=x86_64-unknown-linux-gnu
117126
PACKAGES="python3-zmq"
118127
DEP_OPTS="NO_WALLET=1"
119128
GOAL="install"
120129
BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports"
121-
# Cross-Mac
130+
122131
- stage: test
132+
name: 'macOS 10.10 [GOAL: deploy]'
123133
env: >-
124134
HOST=x86_64-apple-darwin14
125135
PACKAGES="cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev python3-setuptools-git"

0 commit comments

Comments
 (0)