-
Notifications
You must be signed in to change notification settings - Fork 77
/
.travis.yml
98 lines (79 loc) · 3.15 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
language: cpp
before_install:
#- export LD_LIBRARY_PATH=/usr/lib/openblas-base:$LD_LIBRARY_PATH
#- sh ./install-ubuntu-18.04.sh
- # Script for Ubuntu 18.04
- # Install miscellaneous libraries
- sudo apt-get install build-essential pkg-config
- sudo apt-get install dh-autoreconf
- sudo apt-get -y install g++ gfortran f2c libf2c2-dev libf2c2 libblas-dev libopenblas-base libopenblas-dev libblas3 libatlas-base-dev liblapack-dev liblapack3
#- 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.12.tgz
- cd $HOME
- tar xzvf ./Downloads/Ipopt-3.12.12.tgz
- cd $HOME/Ipopt-3.12.12/ThirdParty/Metis
- ./get.Metis
- cd $HOME/Ipopt-3.12.12/ThirdParty/Mumps
- ./get.Mumps
- cd $HOME/Ipopt-3.12.12
- ./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.6.3.tgz
- cd $HOME
- tar zxvf ./Downloads/ADOL-C-2.6.3.tgz
- cd $HOME/ADOL-C-2.6.3
- mkdir ./ThirdParty
- cd ./ThirdParty
- wget --continue http://archive.ubuntu.com/ubuntu/pool/universe/c/colpack/colpack_1.0.10.orig.tar.gz
- tar zxvf colpack_1.0.10.orig.tar.gz
- mv ColPack-1.0.10 ColPack
- cd ColPack
- ./autoconf.sh
- make >/dev/null
- sudo make install >/dev/null
- sudo cp -P ./build/lib/libCol* /usr/lib
- cd $HOME/ADOL-C-2.6.3
- ./configure --enable-sparse --with-colpack=$HOME/ADOL-C-2.6.3/ThirdParty/ColPack/build >/dev/null
- make -j4 > /dev/null
- make install > /dev/null
- sudo cp -P $HOME/adolc_base/lib64/lib* /usr/lib
- sudo cp -r $HOME/adolc_base/include/* /usr/include/
- # Download and install PDFlib
- cd $HOME/Downloads
- wget --continue https://fossies.org/linux/misc/old/PDFlib-Lite-7.0.5p3.tar.gz
- tar zxvf PDFlib-Lite-7.0.5p3.tar.gz
- cd PDFlib-Lite-7.0.5p3
- ./configure >/dev/null
- make -j4>/dev/null; sudo make install >/dev/null
- sudo ldconfig
- # Download and install GNUplot
- cd $HOME/Downloads
- wget --continue https://sourceforge.net/projects/gnuplot/files/gnuplot/4.4.0/gnuplot-4.4.0.tar.gz/download
- mv download gnuplot-4.4.0.tar.gz
- tar zxvf gnuplot-4.4.0.tar.gz
- sudo apt-get -y install libx11-dev libxt-dev libreadline6-dev libgd-dev
- cd gnuplot-4.4.0
- ./configure -with-readline=gnu -without-tutorial >/dev/null
- 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 zxvf 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'