33 lines
1.5 KiB
YAML
33 lines
1.5 KiB
YAML
sudo: false
|
|
|
|
language: c
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- gfortran
|
|
- gcc
|
|
- g++
|
|
- openmpi-bin
|
|
- libopenmpi-dev
|
|
- cmake
|
|
- automake
|
|
- autoconf
|
|
- libblas-dev
|
|
- liblapack-dev
|
|
|
|
jobs:
|
|
include:
|
|
- script: mkdir -p build && cd build && cmake -D EXAMPLES=ON -D MPI=OFF -D ICB=OFF .. && make VERBOSE=1 && make test;
|
|
- script: mkdir -p build && cd build && cmake -D EXAMPLES=ON -D MPI=ON -D ICB=OFF .. && make VERBOSE=1 && make test;
|
|
- script: mkdir -p build && cd build && cmake -D EXAMPLES=ON -D MPI=OFF -D ICB=ON .. && make VERBOSE=1 && make test;
|
|
- script: mkdir -p build && cd build && cmake -D EXAMPLES=ON -D MPI=ON -D ICB=ON .. && make VERBOSE=1 && make test;
|
|
- script: mkdir -p build && cd build && cmake -D EXAMPLES=ON -D MPI=ON -D ICB=ON -DCOVERALLS=ON .. && make VERBOSE=1 && make test;
|
|
- script: ./bootstrap && ./configure && make VERBOSE=1 && make check && make distcheck;
|
|
- script: ./bootstrap && ./configure --enable-mpi && make VERBOSE=1 && make check && make distcheck;
|
|
- script: ./bootstrap && ./configure --enable-icb && make VERBOSE=1 && make check && make distcheck;
|
|
- script: ./bootstrap && ./configure --enable-mpi --enable-icb && make VERBOSE=1 && make check && make distcheck;
|