-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwercker.yml
34 lines (34 loc) · 923 Bytes
/
wercker.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
##
## Wercker CI yml script
##
box: nodesource/trusty
#
build:
steps:
# Execute the bundle install step, a step provided by wercker
- bundle-install
- install-packages:
packages: "gfortran cmake"
- script:
name: run buildup:gfortran,int64,coverage
code: |
python ./setup --fc=gfortran --int64 --coverage build_gfortran_int64_coverage
cd build_gfortran_int64_coverage
make VERBOSE=1
bin/example
cd ..
- script:
name: run buildup:gfortran,int64
code: |
python ./setup --fc=gfortran --int64 build_gfortran_int64
cd build_gfortran_int64
make VERBOSE=1
bin/example
cd ..
- script:
name: run buildup:gfortran
code: |
python ./setup --fc=gfortran build_gfortran
cd build_gfortran
make VERBOSE=1
bin/example