]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Add Travis CI support.
authorMichael R Sweet <michael.r.sweet@gmail.com>
Tue, 2 Oct 2018 22:31:43 +0000 (18:31 -0400)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Tue, 2 Oct 2018 22:31:43 +0000 (18:31 -0400)
.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..aa24760
--- /dev/null
@@ -0,0 +1,25 @@
+#
+# Travis CI configuration file for CUPS.
+#
+# Copyright © 2018 by Apple Inc.
+#
+# Licensed under Apache License v2.0.  See the file "LICENSE" for more
+# information.
+#
+
+language: c
+
+matrix:
+  include:
+    # Linux-specific build stuff
+    - dist: trusty
+      sudo: required
+      before_install:
+        - sudo apt-get update
+        - sudo apt-get install -y libavahi-client-dev libgnutls28-dev libkrb5-dev libnss-mdns libpam-dev libsystemd-dev libusb-1.0-0-dev zlib1g-dev
+
+    # macOS-specific build stuff
+    - os: osx
+      osx_image: xcode10
+
+script: ./configure && make check