Cloudreve/.travis.yml
2020-03-11 18:22:35 +08:00

24 lines
515 B
YAML

language: go
go:
- 1.13.x
git:
depth: 1
install:
- go get github.com/rakyll/statik
before_script:
- statik -src=models -f
before_deploy:
- sudo apt install gcc-mingw-w64
- apt-get install gcc-arm-linux-gnueabi
- chmod +x ./build.sh
- ./build.sh -r b
deploy:
provider: releases
api_key: $GITHUB_TOKEN
file_glob: true
file: release/*
skip_cleanup: true
# script:
# - go test -coverprofile=coverage.txt -covermode=atomic ./...
# after_success:
# - bash <(curl -s https://codecov.io/bash)