Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test build v2 #20

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
13 changes: 10 additions & 3 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ function pre_build {
http://www.fftw.org/ tar.gz \
--with-pic --enable-shared --enable-threads --disable-fortran \
--enable-float --enable-sse --enable-sse2 --enable-avx
# eval cd tests && make check-local && cd -
echo 'Testing fftw: single'
set -ev
cd fftw-3.3.7/tests && make check-local && false && cd -
set +ev

# Clear stamp file which prevents subsequent builds
rm fftw-stamp
Expand All @@ -26,7 +29,9 @@ function pre_build {
http://www.fftw.org/ tar.gz \
--with-pic --enable-shared --enable-threads --disable-fortran \
--enable-sse2 --enable-avx
# eval cd tests && make check-local && cd -
set -ev
cd fftw-3.3.7/tests && make check-local && cd -
set +ev

# Clear stamp file which prevents subsequent builds
rm fftw-stamp
Expand All @@ -37,7 +42,9 @@ function pre_build {
http://www.fftw.org/ tar.gz \
--with-pic --enable-shared --enable-threads --disable-fortran \
--enable-long-double
# eval cd tests && make check-local && cd -
set -ev
cd fftw-3.3.7/tests && make check-local && cd -
set +ev

# Taken from: https://github.com/conda-forge/pyfftw-feedstock/blob/master/recipe/build.sh
export C_INCLUDE_PATH=$BUILD_PREFIX/include # required as fftw3.h installed here
Expand Down