]> Git Repo - secp256k1.git/blobdiff - contrib/travis.sh
Merge #782: Check if variable=yes instead of if var is set in travis.sh
[secp256k1.git] / contrib / travis.sh
index 7af354e68a63265869e49e91ff8c8f25e09bf72b..891027b709f7a1b8fae378a73f18353d93ef15ca 100755 (executable)
@@ -14,9 +14,10 @@ fi
 
 ./configure \
     --enable-experimental="$EXPERIMENTAL" --enable-endomorphism="$ENDOMORPHISM" \
-    --with-field="$FIELD" --with-bignum="$BIGNUM" --with-asm="$ASM" --with-scalar="$SCALAR" \
+    --with-test-override-wide-multiply="$WIDEMUL" --with-bignum="$BIGNUM" --with-asm="$ASM" \
     --enable-ecmult-static-precomputation="$STATICPRECOMPUTATION" --with-ecmult-gen-precision="$ECMULTGENPRECISION" \
     --enable-module-ecdh="$ECDH" --enable-module-recovery="$RECOVERY" \
+    --enable-module-schnorrsig="$SCHNORRSIG" \
     --host="$HOST" $EXTRAFLAGS
 
 if [ -n "$BUILD" ]
@@ -55,6 +56,10 @@ then
     then
         $EXEC ./bench_ecdh >> bench.log 2>&1
     fi
+    if [ "$SCHNORRSIG" = "yes" ]
+    then
+        $EXEC ./bench_schnorrsig >> bench.log 2>&1
+    fi
 fi
 if [ "$CTIMETEST" = "yes" ]
 then
This page took 0.022632 seconds and 4 git commands to generate.