summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2019-01-25 12:21:03 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2019-01-25 12:21:03 +0100
commit22c1f8547f7fcb345289add6a2c06c7def4e571b (patch)
tree08846d1e08489054b2fcf426226ba0ed5f2b5035 /.travis.yml
parentba51ec598c9eb8c03493e4fadfe27b8065296b17 (diff)
parenta800df3fbc55204f66f54248aaf87ba797307f96 (diff)
downloaddevtools32-22c1f8547f7fcb345289add6a2c06c7def4e571b.tar.xz
Merge branch 'master' into i486i486
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..8fced6c
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,28 @@
+language: shell
+sudo: required
+
+services:
+- docker
+
+arch:
+ packages:
+ - openssh
+ - subversion
+ - rsync
+ - arch-install-scripts
+ - git
+ - bzr
+ - mercurial
+ - diffutils
+ - asciidoc
+ - shellcheck
+ script:
+ - sudo pacman -Syu --noconfirm --needed "${CONFIG_PACKAGES[@]}"
+ - make PREFIX=/usr
+ - make PREFIX=/usr DESTDIR="$(mktemp -d)" install
+ - make check || true
+ - SHELLCHECK_OPTS="-S error" make check
+
+script: 'curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash'
+
+# vim: ft=yaml ts=2 sw=2 et: