24 lines
672 B
YAML
24 lines
672 B
YAML
language: cpp
|
|
compiler:
|
|
- g++
|
|
- clang
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386
|
|
install:
|
|
- make gmp-bootstrap
|
|
- make gtest-bootstrap
|
|
script:
|
|
- make -B ENABLE64BIT=Yes
|
|
- make -B ENABLE64BIT=Yes plugin
|
|
- make -B ENABLE64BIT=Yes test
|
|
- make -B ENABLE64BIT=Yes BUILDTYPE=Debug
|
|
- make -B ENABLE64BIT=Yes BUILDTYPE=Debug plugin
|
|
- make -B ENABLE64BIT=Yes test
|
|
- make -B ENABLE64BIT=No
|
|
- make -B ENABLE64BIT=No plugin
|
|
- make -B ENABLE64BIT=No test
|
|
- make -B ENABLE64BIT=No BUILDTYPE=Debug
|
|
- make -B ENABLE64BIT=No BUILDTYPE=Debug plugin
|
|
- make -B ENABLE64BIT=No test
|