1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 01:05:38 +01:00

Attempt at CIT testing

This commit is contained in:
paboyle 2016-04-30 06:29:41 -07:00
parent f7ca6ca889
commit a762a0d9ff

25
.travis.yml Normal file
View File

@ -0,0 +1,25 @@
# 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"