mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
11 years ago
|
language: cpp
|
||
|
compiler: gcc
|
||
|
install:
|
||
|
- sudo apt-get install yasm libgmp-dev
|
||
|
env:
|
||
|
global:
|
||
|
- FIELD=auto BIGNUM=auto ENDOMORPHISM=no BUILD=check
|
||
|
matrix:
|
||
|
- FIELD=gmp BIGNUM=gmp
|
||
|
- FIELD=gmp BIGNUM=openssl
|
||
|
- FIELD=64bit_asm BIGNUM=gmp
|
||
|
- FIELD=64bit_asm BIGNUM=openssl
|
||
|
- FIELD=64bit BIGNUM=gmp
|
||
|
- FIELD=64bit BIGNUM=openssl
|
||
|
- FIELD=32bit BIGNUM=gmp
|
||
|
- FIELD=32bit BIGNUM=openssl
|
||
|
- FIELD=gmp BIGNUM=gmp ENDOMORPHISM=yes
|
||
|
- FIELD=gmp BIGNUM=openssl ENDOMORPHISM=yes
|
||
|
- FIELD=64bit_asm BIGNUM=gmp ENDOMORPHISM=yes
|
||
|
- FIELD=64bit_asm BIGNUM=openssl ENDOMORPHISM=yes
|
||
|
- FIELD=64bit BIGNUM=gmp ENDOMORPHISM=yes
|
||
|
- FIELD=64bit BIGNUM=openssl ENDOMORPHISM=yes
|
||
|
- FIELD=32bit BIGNUM=gmp ENDOMORPHISM=yes
|
||
|
- FIELD=32bit BIGNUM=openssl ENDOMORPHISM=yes
|
||
|
- BUILD=distcheck
|
||
|
before_script: ./autogen.sh
|
||
|
script: ./configure --enable-endomorphism=$ENDOMORPHISM --with-field=$FIELD --with-bignum=$BIGNUM && make -j2 $BUILD
|
||
|
os: linux
|