Link to archive.org for the LSP implementation.
[platform/upstream/libvorbis.git] / .travis.yml
index b302ea2..23fec3d 100644 (file)
@@ -1,8 +1,27 @@
 language: c
-sudo: required
-before_install:
-  - sudo apt-get install -y libogg-dev
+
+os:
+  - linux
+  - osx
+
+osx_image: xcode11
+
+compiler:
+  - gcc
+  - clang
+
+env:
+  - BUILD_SYSTEM=AUTOTOOLS
+  - BUILD_SYSTEM=CMAKE
+
+addons:
+  apt:
+    packages:
+    - libogg-dev
+  homebrew:
+    brewfile: true
+    update: true
+
 script:
-  - ./autogen.sh
-  - ./configure
-  - make distcheck
\ No newline at end of file
+  - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./autogen.sh && ./configure && make -j2 V=1 distcheck; fi
+  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then mkdir build && pushd build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. && cmake --build . && popd; fi