We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b54c2c commit 0c54513Copy full SHA for 0c54513
.travis.yml
@@ -34,6 +34,10 @@ env:
34
BUILD_SCRIPT="FC='ifort -notraceback' ./configure &&
35
make -j 2 && make -j 2 check && ./testcheck.sh" COMPILER="ifort"
36
37
+ # Using configure and make and pgi run the tests.
38
+ - >
39
+ BUILD_SCRIPT="FC='pgf90' ./configure &&
40
+ make -j 2 && make -j 2 check && ./testcheck.sh" COMPILER="pgi"
41
42
install:
43
- |
@@ -51,6 +55,11 @@ install:
51
55
chmod u+x ./install-icc.sh
52
56
./install-icc.sh --components ifort
53
57
source ~/.bashrc
58
+ elif [[ "$COMPILER" == 'pgi' ]]; then
59
+ wget -q 'https://raw.githubusercontent.com/nemequ/pgi-travis/master/install-pgi.sh'
60
+ chmod u+x ./install-pgi.sh
61
+ ./install-pgi.sh
62
+ source ~/.bashrc
54
63
fi
64
65
script:
0 commit comments