Browse Source

package/ci: rename build matrix IDs -- there's not just GL anymore.

pull/280/head
Vladimír Vondruš 8 years ago
parent
commit
2bfee42e6f
  1. 22
      package/ci/appveyor.yml
  2. 20
      package/ci/travis.yml

22
package/ci/appveyor.yml

@ -7,47 +7,47 @@ environment:
- TARGET: desktop - TARGET: desktop
COMPILER: msvc COMPILER: msvc
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-desktop-msvc2015 APPVEYOR_JOB_NAME: windows-gl-msvc2015
- TARGET: desktop - TARGET: desktop
COMPILER: msvc COMPILER: msvc
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-desktop-msvc2017 APPVEYOR_JOB_NAME: windows-gl-msvc2017
- TARGET: desktop - TARGET: desktop
COMPILER: mingw COMPILER: mingw
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-desktop-mingw APPVEYOR_JOB_NAME: windows-gl-mingw
- TARGET: desktop-gles - TARGET: desktop-gles
TARGET_GLES2: ON TARGET_GLES2: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-es2-msvc2015 APPVEYOR_JOB_NAME: windows-gles2-msvc2015
- TARGET: desktop-gles - TARGET: desktop-gles
TARGET_GLES2: ON TARGET_GLES2: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-es2-msvc2017 APPVEYOR_JOB_NAME: windows-gles2-msvc2017
- TARGET: desktop-gles - TARGET: desktop-gles
TARGET_GLES2: OFF TARGET_GLES2: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-es3-msvc2015 APPVEYOR_JOB_NAME: windows-gles3-msvc2015
- TARGET: desktop-gles - TARGET: desktop-gles
TARGET_GLES2: OFF TARGET_GLES2: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-es3-msvc2017 APPVEYOR_JOB_NAME: windows-gles3-msvc2017
- TARGET: rt - TARGET: rt
TARGET_GLES2: ON TARGET_GLES2: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-rt-es2-msvc2015 APPVEYOR_JOB_NAME: windows-rt-gles2-msvc2015
- TARGET: rt - TARGET: rt
TARGET_GLES2: ON TARGET_GLES2: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-rt-es2-msvc2017 APPVEYOR_JOB_NAME: windows-rt-gles2-msvc2017
- TARGET: rt - TARGET: rt
TARGET_GLES2: OFF TARGET_GLES2: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: windows-rt-es3-msvc2015 APPVEYOR_JOB_NAME: windows-rt-gles3-msvc2015
- TARGET: rt - TARGET: rt
TARGET_GLES2: OFF TARGET_GLES2: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYOR_JOB_NAME: windows-rt-es3-msvc2017 APPVEYOR_JOB_NAME: windows-rt-gles3-msvc2017
notifications: notifications:
- provider: Webhook - provider: Webhook

20
package/ci/travis.yml

@ -24,7 +24,7 @@ matrix:
dist: trusty dist: trusty
compiler: gcc compiler: gcc
env: env:
- JOBID=linux-desktop - JOBID=linux-gl
- TARGET=desktop - TARGET=desktop
- CMAKE_CXX_FLAGS="--coverage" - CMAKE_CXX_FLAGS="--coverage"
- LCOV_EXTRA_OPTS="--gcov-tool /usr/bin/gcov-4.7" - LCOV_EXTRA_OPTS="--gcov-tool /usr/bin/gcov-4.7"
@ -33,7 +33,7 @@ matrix:
dist: trusty dist: trusty
compiler: gcc compiler: gcc
env: env:
- JOBID=linux-desktop-nondeprecated - JOBID=linux-nondeprecated
- TARGET=desktop - TARGET=desktop
- BUILD_DEPRECATED=OFF - BUILD_DEPRECATED=OFF
- language: cpp - language: cpp
@ -41,7 +41,7 @@ matrix:
dist: trusty dist: trusty
compiler: clang compiler: clang
env: env:
- JOBID=linux-desktop-sanitizers - JOBID=linux-sanitizers
- TARGET=desktop-sanitizers - TARGET=desktop-sanitizers
- CMAKE_CXX_FLAGS=-fsanitize=address - CMAKE_CXX_FLAGS=-fsanitize=address
addons: addons:
@ -77,7 +77,7 @@ matrix:
dist: trusty dist: trusty
compiler: gcc compiler: gcc
env: env:
- JOBID=linux-es2 - JOBID=linux-gles2
- TARGET=desktop-gles - TARGET=desktop-gles
- TARGET_GLES2=ON - TARGET_GLES2=ON
- CMAKE_CXX_FLAGS="--coverage" - CMAKE_CXX_FLAGS="--coverage"
@ -87,7 +87,7 @@ matrix:
dist: trusty dist: trusty
compiler: gcc compiler: gcc
env: env:
- JOBID=linux-es3 - JOBID=linux-gles3
- TARGET=desktop-gles - TARGET=desktop-gles
- TARGET_GLES2=OFF - TARGET_GLES2=OFF
- CMAKE_CXX_FLAGS="--coverage" - CMAKE_CXX_FLAGS="--coverage"
@ -104,21 +104,21 @@ matrix:
osx_image: xcode9.3beta osx_image: xcode9.3beta
compiler: clang compiler: clang
env: env:
- JOBID=macos-desktop - JOBID=macos-gl
- TARGET=desktop - TARGET=desktop
- CMAKE_CXX_FLAGS="--coverage" - CMAKE_CXX_FLAGS="--coverage"
- language: cpp - language: cpp
os: osx os: osx
osx_image: xcode7.3 osx_image: xcode7.3
env: env:
- JOBID=ios-es2 - JOBID=ios-gles2
- TARGET=ios-simulator - TARGET=ios-simulator
- TARGET_GLES2=ON - TARGET_GLES2=ON
- language: cpp - language: cpp
os: osx os: osx
osx_image: xcode7.3 osx_image: xcode7.3
env: env:
- JOBID=ios-es3 - JOBID=ios-gles3
- TARGET=ios-simulator - TARGET=ios-simulator
- TARGET_GLES2=OFF - TARGET_GLES2=OFF
- language: cpp - language: cpp
@ -139,7 +139,7 @@ matrix:
os: linux os: linux
dist: trusty dist: trusty
env: env:
- JOBID=android-es2 - JOBID=android-gles2
- TARGET=android - TARGET=android
- TARGET_GLES2=ON - TARGET_GLES2=ON
addons: addons:
@ -155,7 +155,7 @@ matrix:
os: linux os: linux
dist: trusty dist: trusty
env: env:
- JOBID=android-es3 - JOBID=android-gles3
- TARGET=android - TARGET=android
- TARGET_GLES2=OFF - TARGET_GLES2=OFF
addons: addons:

Loading…
Cancel
Save