Skip to content

Commit

Permalink
package/ci: unique job IDs for Travis and AppVeyor builds.
Browse files Browse the repository at this point in the history
So I can put them easier to the build status table.
  • Loading branch information
mosra committed Nov 24, 2017
1 parent 3c52186 commit 040f795
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
6 changes: 6 additions & 0 deletions package/ci/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,27 @@ environment:
COMPILER: msvc
ANSI_COLORS: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-msvc2015
- TARGET: desktop
COMPILER: msvc
ANSI_COLORS: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-msvc2017
- TARGET: desktop
COMPILER: msvc
ANSI_COLORS: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-noansi-msvc2015
- TARGET: desktop
COMPILER: mingw
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-mingw
- TARGET: rt
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-rt-msvc2015
- TARGET: rt
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-rt-msvc2017

notifications:
- provider: Webhook
Expand Down
22 changes: 17 additions & 5 deletions package/ci/travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,23 @@ matrix:
os: linux
dist: trusty
compiler: gcc
env: TARGET=desktop
env:
- JOBID=linux
- TARGET=desktop
- language: cpp
os: linux
compiler: gcc
dist: trusty
env:
- JOBID=linux-nondeprecated
- TARGET=desktop
- BUILD_DEPRECATED=OFF
- language: cpp
os: linux
compiler: clang
dist: trusty
env:
- JOBID=linux-sanitizers
- TARGET=desktop-sanitizers
- CMAKE_CXX_FLAGS="-fsanitize=address"
addons:
Expand All @@ -35,20 +39,28 @@ matrix:
- language: cpp
os: osx
compiler: clang
env: TARGET=desktop
env:
- JOBID=macos
- TARGET=desktop
- language: cpp
os: osx
env: TARGET=ios-simulator
env:
- JOBID=ios
- TARGET=ios-simulator
- language: cpp
os: osx
osx_image: xcode8.3
env: TARGET=emscripten
env:
- JOBID=emscripten
- TARGET=emscripten
- language: android
os: linux
# 14.04 doesn't know Android yet so we have to use 12.04 with all the
# annoyances: https://github.com/travis-ci/travis-ci/issues/5370
dist: precise
env: TARGET=android
env:
- JOBID=android
- TARGET=android
addons:
apt:
sources:
Expand Down

0 comments on commit 040f795

Please sign in to comment.