17 lines
328 B
YAML
17 lines
328 B
YAML
language: python
|
|
sudo: required
|
|
|
|
before_install:
|
|
- sudo apt install devscripts -y
|
|
- git clone https://github.com/Boltgolt/howdy.git /tmp/howdy_build
|
|
- cd /tmp/howdy_build
|
|
- debuild -i -us -uc -b
|
|
|
|
install: sudo apt install ../*.deb -y
|
|
|
|
script:
|
|
- sudo howdy help
|
|
- sudo apt purge howdy -y
|
|
|
|
notifications:
|
|
email: false
|