1
0
Fork 0
This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
MrDev023-Cpp-Engine/.travis.yml

35 lines
593 B
YAML
Raw Normal View History

2017-05-12 19:05:01 +02:00
#install: make get-deps libsdl2* libglew* libglut* libglew-dev:i386 libsndfile-dev cmake
2017-05-12 19:19:04 +02:00
matrix:
include:
- os: linux
dist: trusty
sudo: required
2017-05-12 19:05:01 +02:00
addons:
apt:
packages:
2017-05-12 19:09:32 +02:00
- git
- cmake
- dos2unix
- libosmesa6-dev
- libegl1-mesa-dev
2017-05-12 19:15:14 +02:00
- libsdl2-dev
2017-05-12 19:11:11 +02:00
- libsndfile-dev
2017-05-12 19:15:14 +02:00
- freealut
2017-05-12 19:09:32 +02:00
artifacts:
bucket: glew
s3_region: "us-east-1"
paths:
- $(ls *.zip *.tgz | tr "\n" ":")
- $(find doc -type f | tr "\n" ":")
2017-05-12 18:53:31 +02:00
2017-05-12 19:01:18 +02:00
# Enable C++ support
language: cpp
# Compiler selection
2017-05-12 18:53:31 +02:00
compiler:
2017-05-12 19:01:18 +02:00
- gcc
# Build steps
script:
- cmake . && make