File tree 1 file changed +21
-1
lines changed 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -14,17 +14,37 @@ addons:
14
14
matrix :
15
15
include :
16
16
- os : linux
17
+ name : " CMake Release Test on Linux"
17
18
env : CMAKE_BUILD_TYPE=Release
18
19
- os : linux
20
+ name : " Makefile Test on Linux"
21
+ script :
22
+ - rm -f make.inc
23
+ - cp make.inc.example make.inc
24
+ - make -s -j2 all
25
+ - make -j2 lapack_install
26
+ - os : linux
27
+ name : " CMake Coverage Test on Linux"
19
28
env : CMAKE_BUILD_TYPE=Coverage
20
29
- os : osx
30
+ name : " CMake Release Test on Mac OS X"
21
31
osx_image : xcode10.3
22
32
env : CMAKE_BUILD_TYPE=Release
33
+ - os : osx
34
+ osx_image : xcode10.3
35
+ name : " Makefile Test on Mac OS X"
36
+ script :
37
+ - rm -f make.inc
38
+ - cp make.inc.example make.inc
39
+ - make -s -j2 all
40
+ - make -j2 lapack_install
23
41
24
- script :
42
+ before_script :
25
43
- export PR=https://github.com/api/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUEST
26
44
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo `curl -s $PR | jq -r .head.ref`; fi)
27
45
- echo "TRAVIS_BRANCH=$TRAVIS_BRANCH, PR=$PR, BRANCH=$BRANCH"
46
+
47
+ script :
28
48
- export SRC_DIR=$(pwd)
29
49
- export BLD_DIR=${SRC_DIR}/lapack-travis-bld
30
50
- export INST_DIR=${SRC_DIR}/../lapack-travis-install
You can’t perform that action at this time.
0 commit comments