ref: 6bbe0c977fc9ba35898f41c23634f9a0efa4e7fc
parent: 1478d2510b55891c0737351fda9bcab6761c9d17
author: Clownacy <Clownacy@users.noreply.github.com>
date: Wed Feb 5 15:52:30 EST 2020
Explain the macOS OpenGL job exclusion
--- a/.travis.yml
+++ b/.travis.yml
@@ -70,12 +70,13 @@
- BUILD_SYSTEM=cmake BUILD_TYPE=RelWithDebInfo RENDERER=OpenGLES2
jobs:
- exclude:
- - os: osx
- env: BUILD_SYSTEM=make BUILD_TYPE=RELEASE=0 RENDERER=OpenGL3
+ exclude:
+ # Apple's OpenGL is in a non-standard location, so these builds don't work
+ - os: osx
+ env: BUILD_SYSTEM=make BUILD_TYPE=RELEASE=0 RENDERER=OpenGL3
- - os: osx
- env: BUILD_SYSTEM=make BUILD_TYPE=RELEASE=1 RENDERER=OpenGL3
+ - os: osx
+ env: BUILD_SYSTEM=make BUILD_TYPE=RELEASE=1 RENDERER=OpenGL3
before_install:
# Set URL for Discord send script
--
⑨