forked from PSOPT/psopt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
84 lines (80 loc) · 2.94 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
language: cpp
before_install:
# Necessary for ubuntu 12.04.
#- export LD_LIBRARY_PATH=/usr/lib/openblas-base:$LD_LIBRARY_PATH
#- sh ./install-ubuntu.sh
- # Script for Ubuntu 14.04
- # Install miscellaneous libraries
- sudo apt-get -y install g++ gfortran f2c libf2c2-dev libf2c2 libatlas-base-dev
#- ls /usr/lib/openblas-base
#- sudo cp /usr/lib/openblas-base/* /usr/lib/
- sudo ln -s /usr/lib/libblas.so /usr/lib/libopenblas.so
- # Download and install Ipopt, Metis and Mumps
- mkdir $HOME/Downloads
- cd $HOME/Downloads
- wget --continue http://www.coin-or.org/download/source/Ipopt/Ipopt-3.12.3.tgz
- cd $HOME
- tar xzf ./Downloads/Ipopt-3.12.3.tgz
- cd $HOME/Ipopt-3.12.3/ThirdParty/Metis
- ./get.Metis
- cd $HOME/Ipopt-3.12.3/ThirdParty/Mumps
- ./get.Mumps
- cd $HOME/Ipopt-3.12.3
- ./configure --enable-static coin_skip_warn_cxxflags=yes
- make -j4 > /dev/null
- make install > /dev/null
- # Download and install ADOLC and ColPack
- cd $HOME/Downloads
- wget --continue www.coin-or.org/download/source/ADOL-C/ADOL-C-2.5.2.tgz
- cd $HOME
- tar zxf ./Downloads/ADOL-C-2.5.2.tgz
- cd $HOME/ADOL-C-2.5.2
- mkdir ./ThirdParty
- cd ./ThirdParty
- wget --continue http://cscapes.cs.purdue.edu/download/ColPack/ColPack-1.0.9.tar.gz
- tar zxf ColPack-1.0.9.tar.gz
- mv ColPack-1.0.9 ColPack
- cd ColPack
- ./configure
- make -j4 > /dev/null
- sudo make install > /dev/null
- sudo cp /usr/local/lib/libCol* /usr/lib
- cd $HOME/ADOL-C-2.5.2
- ./configure --enable-sparse --with-colpack=$HOME/ADOL-C-2.5.2/ThirdParty/ColPack
- make -j4 > /dev/null
- make install > /dev/null
- sudo cp $HOME/adolc_base/lib64/*.a /usr/lib
- sudo cp -r $HOME/adolc_base/include/* /usr/include/
- # Download and install PDFlib
- cd $HOME/Downloads
- wget --continue http://www.pdflib.com/binaries/PDFlib/705/PDFlib-Lite-7.0.5p3.tar.gz
- tar zxf PDFlib-Lite-7.0.5p3.tar.gz
- cd PDFlib-Lite-7.0.5p3
- ./configure
- make -j4 > /dev/null
- sudo make install > /dev/null
- sudo ldconfig
- # Download and install GNUplot
#- cd $HOME/Downloads
#- wget --continue http://sourceforge.net/projects/gnuplot/files/gnuplot/4.2.2/gnuplot-4.2.2.tar.gz/download
#- mv download gnuplot-4.2.2.tar.gz
#- tar zxf gnuplot-4.2.2.tar.gz
#- sudo apt-get -y install libx11-dev libxt-dev libgd2-xpm-dev libreadline6-dev
#- cd gnuplot-4.2.2
#- ./configure -with-readline=gnu -without-tutorial
#- make -j4 > /dev/null
#- sudo make install > /dev/null
- cd $TRAVIS_BUILD_DIR
- # Download and extract SuiteSparse
- wget --continue http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-4.4.3.tar.gz
- tar zxf SuiteSparse-4.4.3.tar.gz
- cd $TRAVIS_BUILD_DIR
- # Download and extract LUSOL
- wget --continue http://www.stanford.edu/group/SOL/software/lusol/lusol.zip
- unzip lusol.zip
install:
- # Compile SuiteSparse, LUSOL, dmatrix and PSOPT
- cd $TRAVIS_BUILD_DIR
- make all
script:
- echo 'done'