Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
lordofhyphens committed Jul 12, 2018
1 parent ad11dac commit d1d75c4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
language: generic
before_install:
- sh package/linux/travis-decrypt-key
env:
- BOOST_DIR=$HOME/boost_1_63_0
- SLIC3R_STATIC=1
script:
- bash package/linux/travis-setup.sh
- cmake -DBOOST_ROOT=$BOOST_DIR src/
Expand Down Expand Up @@ -53,9 +50,13 @@ matrix:
- WXVERSION=pkg
- CC=gcc-7
- CXX=g++-7
- BOOST_DIR=$HOME/boost_1_63_0
- SLIC3R_STATIC=1
- os: osx
env:
- WXVERSION=pkg
- BOOST_DIR=$HOME/boost_1_63_0
- SLIC3R_STATIC=1
env:
global:
- secure: eEVRZNMv7FM6jrOU9iAFkDhWxFQ1WtHBEaObImcvtFUxy6vWSt3ehFFeTRouj3uHQAnbvUzziDyvPPm8/95alv5g/du8ML6YzzqKBKfazM0xQ7SF6R2DQL8lfFIp+RSV7T02byEP1f1g7Zva7xH9szIlDcSfU0pXW4KWbkBFMd8=
Expand Down
11 changes: 6 additions & 5 deletions package/linux/travis-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
fi
tar -C$HOME -xjf $CACHE/wx${WXVERSION}.tar.bz2
fi
if [ ! -e $CACHE/boost-compiled.tar.bz2 ]; then
echo "Downloading http://www.siusgs.com/slic3r/buildserver/boost_1_63_0.built.gcc-4.9.4-buildserver.tar.bz2 => $CACHE/boost-compiled.tar.bz2"
curl -L "http://www.siusgs.com/slic3r/buildserver/boost_1_63_0.built.gcc-4.9.4-buildserver.tar.bz2" -o $CACHE/boost-compiled.tar.bz2
fi

if [ ! -e $CACHE/boost-compiled.tar.bz2 ]; then
echo "Downloading http://www.siusgs.com/slic3r/buildserver/boost_1_63_0.built.gcc-4.9.4-buildserver.tar.bz2 => $CACHE/boost-compiled.tar.bz2"
curl -L "http://www.siusgs.com/slic3r/buildserver/boost_1_63_0.built.gcc-4.9.4-buildserver.tar.bz2" -o $CACHE/boost-compiled.tar.bz2
fi

tar -C$HOME -xjf $CACHE/boost-compiled.tar.bz2
tar -C$HOME -xjf $CACHE/boost-compiled.tar.bz2

elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
if [[ "$WXVERSION" != "pkg" ]]; then
Expand Down

0 comments on commit d1d75c4

Please sign in to comment.