From 84c7c2f04c67c67f637753d121efc00a50829538 Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 24 Nov 2020 21:22:02 +0000 Subject: [PATCH] CI tweaks --- .travis.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 90d69c5d..dc0492b6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,32 +3,37 @@ language: cpp jobs: include: # linux native build - - os: linux + - name: "Linux native" + os: linux compiler: gcc dist: bionic env: - TARGET="linux" # linux with win32 cross-compilation - - os: linux + - name: "win32 cross-compiled" + os: linux compiler: gcc dist: bionic env: - TARGET="win32" # linux with win64 cross-compilation - - os: linux + - name: "win64 cross-compiled" + os: linux compiler: gcc dist: bionic env: - TARGET="win64" # macOS native build - - os: osx + - name: "macOS native" + os: osx addons: homebrew: packages: - meson + update: true env: - TARGET="macos"