shithub: cstory

Download patch

ref: f06b78bd388ee2eabdd804a42467054e3ed3b163
parent: 425051a3cf72a4b2c5b295c1948964f6d43f0865
author: Clownacy <Clownacy@users.noreply.github.com>
date: Wed Feb 5 14:06:37 EST 2020

Exclude macOS OpenGL3 Make builds from Travis

Apparently Apple handles OpenGL in a completely non-standard way.

--- a/.travis.yml
+++ b/.travis.yml
@@ -69,6 +69,12 @@
     - BUILD_SYSTEM=make BUILD_TYPE=RELEASE=1 RENDERER=OpenGLES2
     - BUILD_SYSTEM=cmake BUILD_TYPE=RelWithDebInfo RENDERER=OpenGLES2
 
+jobs:
+  exclude:
+    # Because Apple loves sabotaging OpenGL
+    - os: osx
+      env: BUILD_SYSTEM=make RENDERER=OpenGL3
+
 before_install:
     # Set URL for Discord send script
     - DISCORD_SEND_SCRIPT_URL=https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
--