Merge Travis CI config from emaculation/macemu

This commit is contained in:
Seg 2020-12-30 07:59:53 -08:00
parent 144b117886
commit 69bf439fac
1 changed files with 61 additions and 0 deletions

61
.travis.yml Normal file
View File

@ -0,0 +1,61 @@
language: cpp
# Do not build branches of the form "pr/*". By prefixing pull requests coming
# from branches inside the repository with pr/, this avoids building both the
# branch push _and_ the pull request.
# Based on https://github.com/boostorg/hana/blob/master/.travis.yml
branches:
except: /pr\/.*/
jobs:
include:
- os: linux
arch: amd64
dist: bionic
sudo: required
compiler: gcc
env: BADGE=amd64-linux-basiliskii
addons:
apt:
packages:
- libgtk2.0-dev
- libsdl2-dev
script:
- cd BasiliskII/src/Unix
- NO_CONFIGURE=1 ./autogen.sh
- ./configure --with-mon
- make
- os: linux
arch: arm64
dist: bionic
sudo: required
compiler: gcc
env: BADGE=arm64-linux-basiliskii
addons:
apt:
packages:
- libgtk2.0-dev
- libsdl2-dev
script:
- cd BasiliskII/src/Unix
- NO_CONFIGURE=1 ./autogen.sh
- ./configure --with-mon
- make
- os: linux
arch: amd64
dist: bionic
sudo: required
compiler: gcc
env: BADGE=amd64-linux-sheepshaver
addons:
apt:
packages:
- libgtk2.0-dev
- libsdl2-dev
script:
- cd SheepShaver
- make links
- cd src/Unix
- NO_CONFIGURE=1 ./autogen.sh
- ./configure --with-mon
- make