summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 8fced6ca213f5ddc330fdc822d1aa399b57b70f4 (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

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: