Browse Source

Try macos-universal builds

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.3.0-RC1
falkTX 4 years ago
parent
commit
ac44b78d37
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 15 additions and 5 deletions
  1. +15
    -5
      .travis.yml

+ 15
- 5
.travis.yml View File

@@ -19,7 +19,8 @@ env:

jobs:
# linux with win32 cross-compilation
- os: linux
- name: "win32 cross-compiled"
os: linux
compiler: gcc
env:
- TARGET="win32"
@@ -27,19 +28,28 @@ jobs:
- xvfb

# linux with win64 cross-compilation
- os: linux
- name: "win64 cross-compiled"
os: linux
compiler: gcc
env:
- TARGET="win64"
services:
- xvfb

# macOS native build
- os: osx
compiler: gcc
# macOS native intel build
- name: "macOS native intel"
os: osx
osx_image: xcode9.4
env:
- TARGET="macos"

# macOS universal build
- name: "macOS universal"
os: osx
osx_image: xcode12u
env:
- TARGET="macos-universal"

before_install:
- bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh



Loading…
Cancel
Save