Kart-Public/.circleci/config.yml

58 lines
1.7 KiB
YAML
Raw Normal View History

2017-03-23 18:24:31 -07:00
version: 2
jobs:
build:
working_directory: /root/SRB2
docker:
- image: debian:jessie
environment:
CC: ccache gcc -m32
PKG_CONFIG_LIBDIR: /usr/lib/i386-linux-gnu/pkgconfig
LIBGME_CFLAGS: -I/usr/include/
LIBGME_LDFLAGS: -lgme
CCACHE_COMPRESS: true
WFLAGS: -Wno-unsuffixed-float-constants
2017-03-23 18:24:31 -07:00
steps:
- run:
name: Add i386 arch
command: dpkg --add-architecture i386
- run:
name: Update APT listing
command: apt-get -qq update
2017-03-23 20:42:28 -07:00
- run:
name: Support S3 upload
command: apt-get -qq -y install ca-certificates
- restore_cache:
keys:
- v1-SRB2-APT
2017-03-23 18:24:31 -07:00
- run:
name: Install SDK
2017-03-23 20:42:28 -07:00
command: apt-get -qq -y install git build-essential nasm libpng12-dev:i386 libsdl2-mixer-dev:i386 libgme-dev:i386 gettext ccache wget gcc-multilib
- save_cache:
key: v1-SRB2-APT
paths:
- /var/cache/apt/archives
2017-03-23 18:24:31 -07:00
- checkout
2017-03-23 20:42:28 -07:00
- restore_cache:
keys:
- v1-SRB2-{{ .Branch }}
2017-03-23 18:24:31 -07:00
- run:
name: Setup cache
command: mkdir -p /root/srb2_cache
#- run:
# name: Download SRB2 Resources
# command: wget --verbose --server-response -c http://rosenthalcastle.org/srb2/SRB2-v2115-assets-2.7z -O /root/srb2_cache/SRB2-v2115-assets-2.7z
- run:
name: Compile
2017-03-23 20:19:25 -07:00
command: make -C src LINUX=1 GCC49=1 ERRORMODE=1 -k
2017-03-23 18:24:31 -07:00
- store_artifacts:
path: /root/SRB2/bin/Linux/Release/
destination: bin
2017-03-23 20:42:28 -07:00
- save_cache:
key: v1-SRB2-{{ .Branch }}
paths:
- /root/.ccache
- /root/srb2_cache
2017-03-23 18:24:31 -07:00