mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
language: cpp
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- compiler: clang
|
|
env: PYTHONV=python3 FLAGS=--installer
|
|
- compiler: clang
|
|
env: PYTHONV=python2.7 FLAGS=--override=STDFLOAT_DOUBLE=1
|
|
- compiler: gcc
|
|
env: PYTHONV=python2.7 FLAGS=--optimize=4
|
|
before_install:
|
|
- export CC=gcc-4.7
|
|
- export CXX=g++-4.7
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-4.7
|
|
- g++-4.7
|
|
- bison
|
|
- flex
|
|
- libfreetype6-dev
|
|
- libgl1-mesa-dev
|
|
- libjpeg-dev
|
|
- libode-dev
|
|
- libopenal-dev
|
|
- libpng-dev
|
|
- libssl-dev
|
|
- libvorbis-dev
|
|
- libx11-dev
|
|
- libxcursor-dev
|
|
- libxrandr-dev
|
|
- nvidia-cg-toolkit
|
|
- python-dev
|
|
- python3-dev
|
|
- zlib1g-dev
|
|
- fakeroot
|
|
script: $PYTHONV makepanda/makepanda.py --everything --git-commit $TRAVIS_COMMIT $FLAGS --threads 4 && LD_LIBRARY_PATH=built/lib PYTHONPATH=built $PYTHONV makepanda/test_imports.py
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "chat.freenode.net#panda3d"
|
|
on_success: change
|
|
on_failure: always
|
|
use_notice: true
|
|
skip_join: true
|