blob: 6ed5a5d70c942a9160fcce25cc03ad6ce81c1220 (
plain) (
blame)
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
|
matrix:
include:
- os: linux
language: c
sudo: required
compiler: gcc
services: docker
before_install:
- docker pull ubuntu:17.10
script:
- docker build -f Dockerfile.gcc .
- os: linux
language: c
sudo: required
compiler: clang
services: docker
before_install:
- docker pull ubuntu:17.10
script:
- docker build -f Dockerfile.clang .
- os: osx
osx_image: xcode7.3
before_install:
- curl -O -L https://www.libsdl.org/release/SDL2-2.0.8.dmg
- hdiutil attach SDL2-2.0.8.dmg
- sudo cp -a /Volumes/SDL2/SDL2.framework /Library/Frameworks/
language: objective-c
xcode_project: macosx/Pcsxr.xcodeproj
xcode_scheme: PCSXR
|