Skip to content
This repository was archived by the owner on Oct 6, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 54 additions & 35 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ addons:
- python3-pip
- python3-setuptools
- g++-7
- libgl1-mesa-dev #need opengl for testing

dist:
- xenial
Expand All @@ -37,59 +38,77 @@ matrix:
- os: linux
env: >
TOOLCHAIN=clang-cxx17
PROJECT_DIR=examples/foo
PROJECT_DIR=examples/freetype-gl

- os: linux
env: >
TOOLCHAIN=gcc-7-cxx17
PROJECT_DIR=examples/foo

- os: linux
env: >
TOOLCHAIN=android-ndk-r17-api-24-arm64-v8a-clang-libcxx14
PROJECT_DIR=examples/foo

- os: linux
env: >
TOOLCHAIN=analyze-cxx17
PROJECT_DIR=examples/foo
PROJECT_DIR=examples/freetype-gl

#FIXME:
#issues with glew
#https://travis-ci.org/github/caseymcc/hunter-testing/jobs/720104161
# - os: linux
# env: >
# TOOLCHAIN=android-ndk-r17-api-24-arm64-v8a-clang-libcxx14
# PROJECT_DIR=examples/freetype-gl

#FIXME:
#issues with zlib
#https://travis-ci.org/github/caseymcc/hunter-testing/jobs/720075500
# - os: linux
# env: >
# TOOLCHAIN=analyze-cxx17
# PROJECT_DIR=examples/freetype-gl

- os: linux
env: >
TOOLCHAIN=sanitize-address-cxx17
PROJECT_DIR=examples/foo
PROJECT_DIR=examples/freetype-gl

- os: linux
env: >
TOOLCHAIN=sanitize-leak-cxx17
PROJECT_DIR=examples/foo
PROJECT_DIR=examples/freetype-gl

- os: linux
env: >
TOOLCHAIN=sanitize-thread-cxx17
PROJECT_DIR=examples/foo
#FIXME:
#issues with x11 lib
#https://travis-ci.org/github/caseymcc/hunter-testing/jobs/720075503
# - os: linux
# env: >
# TOOLCHAIN=sanitize-thread-cxx17
# PROJECT_DIR=examples/freetype-gl

# }

# OSX {

- os: osx
osx_image: xcode9.4
env: >
TOOLCHAIN=osx-10-13-make-cxx14
PROJECT_DIR=examples/foo

- os: osx
osx_image: xcode9.4
env: >
TOOLCHAIN=osx-10-13-cxx14
PROJECT_DIR=examples/foo

- os: osx
osx_image: xcode9.4
env: >
TOOLCHAIN=ios-nocodesign-11-4-dep-9-3
PROJECT_DIR=examples/foo
#FIXME:
#issues with opengl
#https://travis-ci.org/github/caseymcc/hunter-testing/jobs/720104164
# - os: osx
# osx_image: xcode9.4
# env: >
# TOOLCHAIN=osx-10-13-make-cxx14
# PROJECT_DIR=examples/freetype-gl

#FIXME:
#issues with opengl
#https://travis-ci.org/github/caseymcc/hunter-testing/jobs/720104165
# - os: osx
# osx_image: xcode9.4
# env: >
# TOOLCHAIN=osx-10-13-cxx14
# PROJECT_DIR=examples/freetype-gl

#FIXME:
#issues with opengl
#https://travis-ci.org/github/caseymcc/hunter-testing/jobs/720104166
# - os: osx
# osx_image: xcode9.4
# env: >
# TOOLCHAIN=ios-nocodesign-11-4-dep-9-3
# PROJECT_DIR=examples/freetype-gl

# }

Expand Down
19 changes: 11 additions & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,31 @@ environment:
matrix:

- TOOLCHAIN: "ninja-vs-15-2017-win64-cxx17"
PROJECT_DIR: examples\foo
PROJECT_DIR: examples\freetype-gl
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

- TOOLCHAIN: "nmake-vs-15-2017-win64-cxx17"
PROJECT_DIR: examples\foo
PROJECT_DIR: examples\freetype-gl
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

- TOOLCHAIN: "vs-15-2017-win64-cxx17"
PROJECT_DIR: examples\foo
PROJECT_DIR: examples\freetype-gl
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

- TOOLCHAIN: "vs-14-2015-sdk-8-1"
PROJECT_DIR: examples\foo
PROJECT_DIR: examples\freetype-gl
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015

- TOOLCHAIN: "mingw-cxx17"
PROJECT_DIR: examples\foo
PROJECT_DIR: examples\freetype-gl
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015

- TOOLCHAIN: "msys-cxx17"
PROJECT_DIR: examples\foo
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
#FIXME
# Unable to locate opengl on mysys
# https://ci.appveyor.com/project/caseymcc/hunter-testing/build/job/m8xlutnkxjfg1w3p
# - TOOLCHAIN: "msys-cxx17"
# PROJECT_DIR: examples\freetype-gl
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015

install:
# Python 3
Expand Down