1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00
Grid/.travis.yml
2016-04-30 06:29:41 -07:00

26 lines
553 B
YAML

# Ubuntu 14.04 Trusty support
sudo: required
dist: trusty
# Enable C++ support
language: cpp
# Compiler selection
compiler:
- gcc
# Build steps
script:
- mkdir build
- cd build
- ../configure --enable-precision=single --enable-simd=AVX2 --enable-comms=none
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
env: CXX=g++-4.9
env: CXXFLAGS="-mavx2 -mfma -fopenmp -O3 -std=c++11"
env: LIBS="-fopenmp -lmpfr -lgmp"