mirror of https://github.com/perkeep/perkeep.git
15 lines
344 B
YAML
15 lines
344 B
YAML
sudo: required
|
|
dist: trusty
|
|
go_import_path: camlistore.org
|
|
language: go
|
|
go:
|
|
- 1.8
|
|
before_install:
|
|
- sudo apt-get install -qq pkg-config fuse
|
|
- sudo modprobe fuse
|
|
- sudo chmod 666 /dev/fuse
|
|
- sudo chown root:$USER /etc/fuse.conf
|
|
install: go run make.go -v
|
|
before_script: go build -o ./bin/devcam ./dev/devcam
|
|
script: ./bin/devcam test
|