New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
.travis.yml in vendors/FCM-2017.10.0 – NEMO

source: vendors/FCM-2017.10.0/.travis.yml @ 12489

Last change on this file since 12489 was 10672, checked in by nicolasmartin, 5 years ago

Reimport latest FCM release

File size: 1.0 KB
Line 
1# Configuration for running FCM test battery on Travis CI
2# See https://travis-ci.org/ for more info.
3
4---
5language: perl
6
7before_install:
8    - cat >"${HOME}/.bashrc" <<<"export PATH=${PWD}/bin:\$PATH"
9    - source "${HOME}/.bashrc"
10
11install:
12    - sudo apt-get install -y build-essential gfortran
13    - sudo apt-get install -y libxml-parser-perl libconfig-inifiles-perl
14    - sudo apt-get install -y libdbi-perl libdbd-sqlite3-perl
15    # For some reason XML::Parser needs to be installed this way
16    - cpanm 'Config::IniFiles' 'XML::Parser'
17    # Latest Subversion
18    - sudo sh -c 'echo "deb http://opensource.wandisco.com/ubuntu `lsb_release -cs` svn19" >> /etc/apt/sources.list.d/subversion19.list'
19    - sudo wget -q http://opensource.wandisco.com/wandisco-debian.gpg -O- | sudo apt-key add -
20    - sudo apt-get update
21    - sudo apt-get install -y subversion libsvn-perl python-subversion
22    - sudo apt-get install -y heirloom-mailx
23    - sudo apt-get install -y python-pip
24    - sudo pip install trac
25
26script:
27    - fcm test-battery -j 5
Note: See TracBrowser for help on using the repository browser.