diff options
author | lloyd <[email protected]> | 2015-03-28 16:24:25 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-03-28 16:24:25 +0000 |
commit | 53314a33e1f927acd59338bf9a638729b7a0d774 (patch) | |
tree | 4775f305793cb3466bb24d6e00dce26e2ca7d064 | |
parent | ec65252c7128fb376bf77bbc274ea78a789b479f (diff) |
Add x86-32 build to Travis
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index edfcc9a74..76b34690c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ install: script: - $CXX --version - - python configure.py $BUILD_MODE --cc=$CC --cc-bin=$CXX --with-openssl --with-sqlite --with-zlib + - python configure.py $BUILD_MODE --cpu=$CPU --cc=$CC --cc-abi-flags=$CC_ABI_FLAGS --cc-bin=$CXX --with-openssl --with-sqlite --with-zlib - "make" - "LD_LIBRARY_PATH=. ./botan-test" @@ -29,5 +29,7 @@ os: - linux env: - - BUILD_MODE="" - - BUILD_MODE="--via-amalgamation --disable-shared" + - CPU="x86_64" BUILD_MODE="" + - CPU="x86_64" BUILD_MODE="--via-amalgamation --disable-shared" + - CPU="x86_32" CC_ABI_FLAGS="-m32" BUILD_MODE="" + - CPU="x86_32" CC_ABI_FLAGS="-m32" BUILD_MODE="--via-amalgamation --disable-shared" |