Skip to content

Commit 26c327c

Browse files
committed
Modify Travis-CI config file to name each job
1 parent 846e285 commit 26c327c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ language: cpp
33
cache: ccache
44
matrix:
55
include:
6-
# GCC 10 on Linux
7-
- os: linux
6+
- name: GCC 10 on Linux
7+
os: linux
88
addons:
99
apt:
1010
sources:
@@ -13,8 +13,8 @@ matrix:
1313
- g++-10
1414
env:
1515
- MATRIX_EVAL="CMAKE_GENERATOR='Unix Makefiles' && CXX=g++-10"
16-
# Clang 10 on Linux
17-
- os: linux
16+
- name: Clang 10 on Linux
17+
os: linux
1818
addons:
1919
apt:
2020
update: true
@@ -26,13 +26,13 @@ matrix:
2626
- clang-10
2727
env:
2828
- MATRIX_EVAL="CMAKE_GENERATOR='Unix Makefiles' && CXX=clang++-10"
29-
# Clang 10 on macOS
30-
- os: osx
29+
- name: Clang 10 on macOS
30+
os: osx
3131
osx_image: xcode10.3 # this image has CLang 10.0.1 (same as Linux) and CMake 3.15
3232
env:
3333
- MATRIX_EVAL="CMAKE_GENERATOR='Unix Makefiles' && CXX=clang++"
34-
# MSVC 2017 on Windows
35-
- os: windows
34+
- name: MSVC 2017 on Windows
35+
os: windows
3636
env:
3737
- MATRIX_EVAL="CMAKE_GENERATOR='Visual Studio 15 2017'"
3838
before_install:

0 commit comments

Comments
 (0)