1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00
Grid/.travis.yml

29 lines
706 B
YAML
Raw Normal View History

2016-04-30 14:29:41 +01:00
# Ubuntu 14.04 Trusty support
sudo: required
dist: trusty
# Enable C++ support
language: cpp
# Compiler selection
# Build steps
script:
2016-04-30 17:08:42 +01:00
- ./scripts/reconfigure_script
2016-04-30 14:29:41 +01:00
- mkdir build
- cd build
2016-04-30 17:46:44 +01:00
- ../configure CXXFLAGS="-mavx2 -mfma -fopenmp -O3 -std=c++11" LIBS="-fopenmp -lmpfr -lgmp" --enable-precision=single --enable-simd=AVX2 --enable-comms=none
2016-04-30 17:11:57 +01:00
- make
- ./benchmarks/Benchmark_dwf --threads 1
2016-04-30 14:29:41 +01:00
matrix:
include:
2016-04-30 17:41:23 +01:00
- compiler: gcc-4.9
2016-04-30 14:29:41 +01:00
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
2016-04-30 17:22:22 +01:00
- libmpfr-dev
- libgmp-dev
2016-04-30 17:34:38 +01:00
- libmpc-dev
2016-04-30 17:41:23 +01:00
- binutils-dev
2016-04-30 14:29:41 +01:00
env: CXX=g++-4.9