blob: d920b0ec8d2c3d86e89155f026c1f10999c3cfa4 (
plain)
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
|
language: cpp
dist: xenial
sudo: false
os:
- linux
before_install:
- sudo apt-get install -y gnuplot
matrix:
include:
- os: linux
compiler: gcc
env: CONFIG=Debug
- os: linux
compiler: gcc
env: CONFIG=Release
- os: linux
compiler: clang
env: CONFIG=Debug
- os: linux
compiler: clang
env: CONFIG=Release
script:
- set -e
- mkdir -p build && cd build
- cmake -DCMAKE_BUILD_TYPE=$CONFIG .. && make -j
- ctest --output-on-failure
- make fpm-accuracy-images -j
addons:
artifacts:
working_dir: build
paths:
- $(ls accuracy-*.png | tr "\n" ":")
target_paths:
- fpm
|