Skip to content

Commit

Permalink
package/ci: rename build matrix IDs -- there's not just GL anymore.
Browse files Browse the repository at this point in the history
  • Loading branch information
mosra committed Aug 27, 2018
1 parent 5a93e05 commit 2bfee42
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
22 changes: 11 additions & 11 deletions package/ci/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,47 +7,47 @@ environment:
- TARGET: desktop
COMPILER: msvc
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-desktop-msvc2015
APPVEYOR_JOB_NAME: windows-gl-msvc2015
- TARGET: desktop
COMPILER: msvc
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-desktop-msvc2017
APPVEYOR_JOB_NAME: windows-gl-msvc2017
- TARGET: desktop
COMPILER: mingw
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-desktop-mingw
APPVEYOR_JOB_NAME: windows-gl-mingw
- TARGET: desktop-gles
TARGET_GLES2: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-es2-msvc2015
APPVEYOR_JOB_NAME: windows-gles2-msvc2015
- TARGET: desktop-gles
TARGET_GLES2: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-es2-msvc2017
APPVEYOR_JOB_NAME: windows-gles2-msvc2017
- TARGET: desktop-gles
TARGET_GLES2: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-es3-msvc2015
APPVEYOR_JOB_NAME: windows-gles3-msvc2015
- TARGET: desktop-gles
TARGET_GLES2: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-es3-msvc2017
APPVEYOR_JOB_NAME: windows-gles3-msvc2017
- TARGET: rt
TARGET_GLES2: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-rt-es2-msvc2015
APPVEYOR_JOB_NAME: windows-rt-gles2-msvc2015
- TARGET: rt
TARGET_GLES2: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-rt-es2-msvc2017
APPVEYOR_JOB_NAME: windows-rt-gles2-msvc2017
- TARGET: rt
TARGET_GLES2: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-rt-es3-msvc2015
APPVEYOR_JOB_NAME: windows-rt-gles3-msvc2015
- TARGET: rt
TARGET_GLES2: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-rt-es3-msvc2017
APPVEYOR_JOB_NAME: windows-rt-gles3-msvc2017

notifications:
- provider: Webhook
Expand Down
20 changes: 10 additions & 10 deletions package/ci/travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ matrix:
dist: trusty
compiler: gcc
env:
- JOBID=linux-desktop
- JOBID=linux-gl
- TARGET=desktop
- CMAKE_CXX_FLAGS="--coverage"
- LCOV_EXTRA_OPTS="--gcov-tool /usr/bin/gcov-4.7"
Expand All @@ -33,15 +33,15 @@ matrix:
dist: trusty
compiler: gcc
env:
- JOBID=linux-desktop-nondeprecated
- JOBID=linux-nondeprecated
- TARGET=desktop
- BUILD_DEPRECATED=OFF
- language: cpp
os: linux
dist: trusty
compiler: clang
env:
- JOBID=linux-desktop-sanitizers
- JOBID=linux-sanitizers
- TARGET=desktop-sanitizers
- CMAKE_CXX_FLAGS=-fsanitize=address
addons:
Expand Down Expand Up @@ -77,7 +77,7 @@ matrix:
dist: trusty
compiler: gcc
env:
- JOBID=linux-es2
- JOBID=linux-gles2
- TARGET=desktop-gles
- TARGET_GLES2=ON
- CMAKE_CXX_FLAGS="--coverage"
Expand All @@ -87,7 +87,7 @@ matrix:
dist: trusty
compiler: gcc
env:
- JOBID=linux-es3
- JOBID=linux-gles3
- TARGET=desktop-gles
- TARGET_GLES2=OFF
- CMAKE_CXX_FLAGS="--coverage"
Expand All @@ -104,21 +104,21 @@ matrix:
osx_image: xcode9.3beta
compiler: clang
env:
- JOBID=macos-desktop
- JOBID=macos-gl
- TARGET=desktop
- CMAKE_CXX_FLAGS="--coverage"
- language: cpp
os: osx
osx_image: xcode7.3
env:
- JOBID=ios-es2
- JOBID=ios-gles2
- TARGET=ios-simulator
- TARGET_GLES2=ON
- language: cpp
os: osx
osx_image: xcode7.3
env:
- JOBID=ios-es3
- JOBID=ios-gles3
- TARGET=ios-simulator
- TARGET_GLES2=OFF
- language: cpp
Expand All @@ -139,7 +139,7 @@ matrix:
os: linux
dist: trusty
env:
- JOBID=android-es2
- JOBID=android-gles2
- TARGET=android
- TARGET_GLES2=ON
addons:
Expand All @@ -155,7 +155,7 @@ matrix:
os: linux
dist: trusty
env:
- JOBID=android-es3
- JOBID=android-gles3
- TARGET=android
- TARGET_GLES2=OFF
addons:
Expand Down

0 comments on commit 2bfee42

Please sign in to comment.