1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-13 01:05:36 +00:00
Grid/.travis.yml

28 lines
600 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
compiler:
- gcc
# 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
- ../configure --enable-precision=single --enable-simd=AVX2 --enable-comms=none
2016-04-30 17:08:42 +01:00
- make -j 4
2016-04-30 14:29:41 +01:00
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"