fileboy/.travis.yml

28 lines
388 B
YAML
Raw Permalink Normal View History

2019-08-12 05:46:52 +00:00
language: go
go:
2019-12-04 02:31:17 +00:00
- 1.13.x
2019-08-12 05:46:52 +00:00
- master
2019-12-09 09:40:25 +00:00
2019-12-11 08:19:19 +00:00
dist: bionic # ubuntu 18.04
2019-12-09 09:40:25 +00:00
2019-08-12 05:56:11 +00:00
script:
2019-12-09 09:40:25 +00:00
- make init
2019-12-24 03:35:51 +00:00
- make build-all
2019-12-24 03:50:21 +00:00
- ls -al bin
2019-12-23 08:23:28 +00:00
- echo $PATH
2019-12-23 08:26:20 +00:00
- cp bin/fileboy-linux-amd64.bin /home/travis/bin/fileboy
2019-12-23 08:18:03 +00:00
- fileboy version
- fileboy help
- fileboy init
2019-12-11 08:29:22 +00:00
- cat filegirl.yaml
2019-12-23 08:18:03 +00:00
- fileboy exec
2020-03-16 03:16:14 +00:00
- fileboy daemon
2019-12-24 03:50:21 +00:00
- ls -al .fileboy.pid
2019-12-24 03:47:21 +00:00
- ps aux | grep fileboy
2019-12-23 08:18:03 +00:00
- fileboy stop
2019-08-12 05:56:11 +00:00