glew-cmake/.travis.yml

35 lines
961 B
YAML
Raw Normal View History

2015-10-05 04:46:24 +00:00
language: cpp
sudo: false
2015-10-05 04:46:24 +00:00
install:
script:
- make -C auto clobber
- make extensions
- make dist-src
2019-01-29 20:38:41 +00:00
- make clean && SYSTEM=linux make
- make clean && SYSTEM=linux-osmesa make
- make clean && SYSTEM=linux-egl make
- make clean && SYSTEM=linux-clang make
- make clean && SYSTEM=linux-clang-egl make
- pushd build/cmake && git clean -xdf . && cmake -G 'Unix Makefiles' . && make && popd
- pushd build/cmake && git clean -xdf . && cmake -G 'Unix Makefiles' -DGLEW_OSMESA=1 . && make && popd
- pushd build/cmake && git clean -xdf . && cmake -G 'Unix Makefiles' -DGLEW_EGL=1 . && make && popd
2015-10-05 04:46:24 +00:00
addons:
apt:
packages:
- git
- cmake
- dos2unix
- libosmesa6-dev
2016-01-23 06:37:59 +00:00
- libegl1-mesa-dev
2019-01-29 20:38:41 +00:00
deploy:
provider: s3
skip_cleanup: true
bucket: glew
region: us-east-1
acl: public_read
paths:
2015-10-05 04:46:24 +00:00
- $(ls *.zip *.tgz | tr "\n" ":")
2015-10-05 08:20:39 +00:00
- $(find doc -type f | tr "\n" ":")
2019-01-29 20:38:41 +00:00
on:
repo: nigels-com/glew