add mac build

This commit is contained in:
Christopher Mosher 2019-04-08 15:38:21 -04:00
parent 0ea00ce3e7
commit 3718600ecd
1 changed files with 27 additions and 12 deletions

View File

@ -1,13 +1,28 @@
dist: xenial
sudo: required
language: cpp
compiler:
- gcc
before_install:
- sudo apt-get -qq update
install:
- sudo apt-get install -y xa65 libsdl2-gfx-dev
before_script:
- ./bootstrap
script:
- ./configure && make
env:
global:
- NAME=$(grep bin_PROGRAMS src/Makefile.am | cut -d= -f2)
matrix:
include:
- os: linux
dist: xenial
sudo: required
before_install:
- sudo apt-get -qq update
install:
- sudo apt-get install -y build-essential xa65 libsdl2-gfx-dev
before_script:
- ./bootstrap
script:
- ./configure && make
- zip -j $NAME-$TRAVIS_OS_NAME src/$NAME
- os: osx
install:
- HOMEBREW_NO_AUTO_UPDATE=1 brew install xa sdl2_gfx
before_script:
- ./bootstrap
script:
- ./configure && make
- zip -j $NAME-$TRAVIS_OS_NAME src/$NAME