Skip to content

Commit

Permalink
force check retry
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisHeimbigner committed Sep 12, 2020
1 parent 2f0a6d2 commit 33a59e5
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions debug/cf
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,20 @@ DB=1
#NOTUIL=1
FAST=1
#PROF=1
#BENCH=1

NCZARR=1
HDF5=1
#NCZARR=1
#HDF5=1
DAP=1
S3=1
#S3=1
#S3TEST=1
#SZIP=1
#HDF4=1
#PNETCDF=1
#PAR4=1

AWSSDK_DIR="/cygdrive/c/tools/aws-cpp-sdk-all"

#TESTSERVERS="149.165.169.123:8080,remotetest.unidata.ucar.edu"
#TESTSERVERS="localhost:8080,149.165.169.123:8080"
#TESTSERVERS="149.165.169.123:8080"
Expand Down Expand Up @@ -120,11 +123,27 @@ if test "x$NCZARR" != "x" ; then
FLAGS="$FLAGS --enable-nczarr"
fi

if test "x$S3" != x ; then
FLAGS="$FLAGS --enable-s3-sdk"
else
FLAGS="$FLAGS --disable-s3-sdk"
fi
if test "x$S3TEST" != x ; then
FLAGS="$FLAGS --enable-s3-tests"
export AWSSDK_DIR="${AWSSDK_DIR}"
LDFLAGS="$LDFLAGS $AWSSDK_DIR/bin/aws-cpp-sdk-s3.dll"
CPPFLAGS="$CPPFLAGS -I${AWSSDK_DIR}/include"
fi

if test "x${PROF}" = x1 ; then
CFLAGS="${CFLAGS} -pg"
LDFLAGS="${LDFLAGS} -pg"
fi

if test "x${BENCH}" = x1 ; then
FLAGS="$FLAGS --enable-benchmarks"
fi

export PATH
export CC
export CPPFLAGS
Expand Down

0 comments on commit 33a59e5

Please sign in to comment.