-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.travis.yml
More file actions
54 lines (48 loc) · 1.49 KB
/
.travis.yml
File metadata and controls
54 lines (48 loc) · 1.49 KB
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
language: cpp
sudo: enabled
compiler:
- gcc
matrix:
include:
- name: CUDA 9
env:
- CUDA=9.2.148-1
- CUDA_SHORT=9.2
- UBUNTU_VERSION=ubuntu1604
dist: xenial
- name: CUDA 10
env:
- CUDA=10.1.105-1
- CUDA_SHORT=10.1
- UBUNTU_VERSION=ubuntu1804
dist: bionic
before_install:
- INSTALLER=cuda-repo-${UBUNTU_VERSION}_${CUDA}_amd64.deb
- wget http://developer.download.nvidia.com/compute/cuda/repos/${UBUNTU_VERSION}/x86_64/${INSTALLER}
- sudo dpkg -i ${INSTALLER}
- wget https://developer.download.nvidia.com/compute/cuda/repos/${UBUNTU_VERSION}/x86_64/7fa2af80.pub
- sudo apt-key add 7fa2af80.pub
- sudo apt update -qq
- sudo apt install -y cuda-core-${CUDA_SHORT/./-} cuda-cudart-dev-${CUDA_SHORT/./-} cuda-cufft-dev-${CUDA_SHORT/./-}
- sudo apt clean
- CUDA_HOME=/usr/local/cuda-${CUDA_SHORT}
- LD_LIBRARY_PATH=${CUDA_HOME}/lib64:${LD_LIBRARY_PATH}
- PATH=${CUDA_HOME}/bin:${PATH}
- sudo apt-get update
- sudo apt-get -y install libnetcdf-dev
before_script:
- echo "ncols 3" > bathy.asc
- echo "nrows 3" >> bathy.asc
- echo "xllcenter -1" >> bathy.asc
- echo "yllcenter -1" >> bathy.asc
- echo "cellsize 1" >> bathy.asc
- echo "nodata_value -9999" >> bathy.asc
- printf "0.0 0.0 0.0" >> bathy.asc
- printf "0.0 0.0 0.0" >> bathy.asc
- printf "0.0 0.0 0.0" >> bathy.asc
- echo "test=1">BG_param.txt
- echo "gpudevice=-1">>BG_param.txt
- echo "bathy=bathy.asc">>BG_param.txt
script:
- make
- ./BG_Flood