28 lines
388 B
YAML
28 lines
388 B
YAML
|
|
language: go
|
|
|
|
go:
|
|
- 1.13.x
|
|
- master
|
|
|
|
|
|
dist: bionic # ubuntu 18.04
|
|
|
|
|
|
script:
|
|
- make init
|
|
- make build-all
|
|
- ls -al bin
|
|
- echo $PATH
|
|
- cp bin/fileboy-linux-amd64.bin /home/travis/bin/fileboy
|
|
- fileboy version
|
|
- fileboy help
|
|
- fileboy init
|
|
- cat filegirl.yaml
|
|
- fileboy exec
|
|
- fileboy deamon
|
|
- ls -al .fileboy.pid
|
|
- ps aux | grep fileboy
|
|
- fileboy stop
|
|
|