-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
48 lines (46 loc) · 1.08 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
language: c
dist: bionic
matrix:
include:
- name: "Linux"
os: linux
dist: bionic
addons:
apt:
sources:
- sourceline: 'ppa:dciabrin/ngdevkit'
# bionic lacks python3-pygame, so install it from this ppa
- sourceline: 'ppa:thopiekar/pygame'
packages:
- ngdevkit
- ngdevkit-gngeo
- zip
- pkg-config
- imagemagick
- sox
- libsox-fmt-mp3
- name: "macOS"
os: osx
osx_image: xcode11.4
addons:
homebrew:
taps: dciabrin/ngdevkit
packages:
- ngdevkit
- ngdevkit-gngeo
- zip
- pkg-config
- imagemagick
- sox
- autoconf
- automake
env:
PY3PATH="/usr/local/opt/python3/bin"
before_script:
- $PY3PATH/pip3 install pygame
script:
- if [ -n "$PY3PATH" ]; then export PATH=$PY3PATH:$PATH; fi
- git submodule update --init --recursive
- autoreconf -iv
- ./configure
- make