-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy path.travis.yml
34 lines (24 loc) · 1.07 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
sudo: required
language: cpp
git:
submodules: false
services:
- docker
before_install:
- docker pull esrfbliss/lima-ci-debian8
- docker run --name lima-ci-docker -dit esrfbliss/lima-ci-debian8
script:
- echo "Installing pylon5 on docker image"
- docker exec lima-ci-docker /bin/sh -c 'cd /root && tar zxvf lib_for_lima/pylon-5.0.1.6388-x86_64.tar.gz && cd pylon-5.0.1.6388-x86_64 && tar -C /opt -xzf pylonSDK*.tar.gz'
- echo "Unset esrf proxy from docker and cloning GitHub repositories"
- docker exec lima-ci-docker /bin/sh -c 'unset https_proxy && unset http_proxy && cd /root && ./install_lima_submodule camera/basler'
- echo "Compiling Lima and camera basler with options"
- docker exec lima-ci-docker /bin/sh -c 'cd /root/Lima/ && ./install.sh camera/basler python tests cbf fits tiff hdf5 config'
- echo "Executing tests in cmake-build repository"
- docker exec lima-ci-docker /bin/sh -c 'cd /root/Lima/cmake-build/ && ctest --timeout 10'
after-script:
- docker stop lima-ci-docker
- docker rm lima-ci-docker
branches:
only:
- cmake