We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 297e7aa commit 893565fCopy full SHA for 893565f
.travis.yml
@@ -0,0 +1,25 @@
1
+language: cpp
2
+
3
+os:
4
+ - linux
5
+ - osx
6
+sudo: required
7
8
+addons:
9
+ apt:
10
+ packages:
11
+ - libwww-perl
12
13
+compiler:
14
+ - gcc
15
+ - clang
16
17
+before_install:
18
+ - if [ "$(expr substr $(uname -s) 1 5)" == "Linux" ] ; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt-get -qq update && sudo apt-get -qq install g++-4.8 gcc-4.8 && sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 && sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90 ; fi
19
20
+install:
21
+ - chmod a+x regression/failed-tests-printer.pl
22
+ - cd src && make minisat2-download
23
24
+script:
25
+ - make CXXFLAGS="-Wall -O2 -g -Werror -Wno-deprecated-register -pedantic -Wno-sign-compare" -j2 && cd ../regression && make test
0 commit comments