forked from Ashark/archlinux-amdgpu-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
20 lines (17 loc) · 716 Bytes
/
Copy path.travis.yml
File metadata and controls
20 lines (17 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sudo: required
arch:
packages:
- python
- python-chardet
- python-pip
- wget
script:
- sudo pip install python-debian
- ./build.sh
- 'if [ -n "$(git status --porcelain)" ]; then echo Error: changes found after generate; git status; exit 1; fi'
- makepkg --printsrcinfo > .SRCINFO
- 'if [ -n "$(git status --porcelain)" ]; then echo Error: changes found after printsrcinfo; git status; exit 1; fi'
- ALL_PACKAGES=true PKGEXT='.pkg.tar' makepkg -s
- 'if [ -n "$(git status --porcelain)" ]; then echo Error: changes found after build; git status; exit 1; fi'
script:
- "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"