mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-06 00:26:19 +08:00

* Enabled c++11 support (required for IO::AMF), extended Travis build to build with g++ 4.9 * ifdef guard in poly2tri/util to avoid redefinition warning * cache local-lib
29 lines
459 B
YAML
29 lines
459 B
YAML
language: perl
|
|
install: export LDLOADLIBS=-lstdc++
|
|
script: perl ./Build.PL
|
|
perl:
|
|
- "5.14"
|
|
- "5.18"
|
|
- "5.20"
|
|
branches:
|
|
only:
|
|
- master
|
|
- stable
|
|
sudo: false
|
|
cache:
|
|
apt: true
|
|
directories:
|
|
- local-lib
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- boost-latest
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- libboost-thread1.55-dev
|
|
- libboost-system1.55-dev
|
|
- libboost-filesystem1.55-dev
|
|
- liblocal-lib-perl
|
|
- g++-4.9
|
|
env: CC=g++-4.9
|