Epple-II/.travis.yml

29 lines
672 B
YAML
Raw Normal View History

2017-09-09 21:43:57 +00:00
language: cpp
2019-04-08 19:38:21 +00:00
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