Browse Source

CI tweaks

tags/2020-12-27
falkTX 2 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:
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"



Loading…
Cancel
Save