summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 46d6cee748fda99960b2cb547d24c9b6e0660313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
language: shell
sudo: required

services:
- docker

archlinux:
  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: