Browse Source

CI tweaks

tags/2020-12-27
falkTX 4 years ago
parent
commit
84c7c2f04c
1 changed files with 9 additions and 4 deletions
  1. +9
    -4
      .travis.yml

+ 9
- 4
.travis.yml View File

@@ -3,32 +3,37 @@ language: cpp
jobs: jobs:
include: include:
# linux native build # linux native build
- os: linux
- name: "Linux native"
os: linux
compiler: gcc compiler: gcc
dist: bionic dist: bionic
env: env:
- TARGET="linux" - TARGET="linux"


# linux with win32 cross-compilation # linux with win32 cross-compilation
- os: linux
- name: "win32 cross-compiled"
os: linux
compiler: gcc compiler: gcc
dist: bionic dist: bionic
env: env:
- TARGET="win32" - TARGET="win32"


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


# macOS native build # macOS native build
- os: osx
- name: "macOS native"
os: osx
addons: addons:
homebrew: homebrew:
packages: packages:
- meson - meson
update: true
env: env:
- TARGET="macos" - TARGET="macos"




Loading…
Cancel
Save