add fuzzers and build script from OSS-Fuzz
[platform/upstream/libvorbis.git] / .travis.yml
index b302ea2..b3dddcd 100644 (file)
@@ -1,8 +1,24 @@
 language: c
-sudo: required
-before_install:
-  - sudo apt-get install -y libogg-dev
+
+compiler:
+  - gcc
+  - clang
+
+env:
+  - BUILD_SYSTEM=AUTOTOOLS
+  - BUILD_SYSTEM=CMAKE
+
+addons:
+  apt:
+    packages:
+    - libogg-dev
+
 script:
-  - ./autogen.sh
-  - ./configure
-  - make distcheck
\ No newline at end of file
+  - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./autogen.sh ; fi
+  - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./configure ; fi
+  - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then make -j2 V=1 distcheck ; fi
+  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then mkdir build ; fi
+  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then pushd build ; fi
+  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. ; fi
+  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then cmake --build . ; fi
+  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then popd ; fi