This repository has been archived by the owner on Oct 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nyah Check
committed
Jan 6, 2020
1 parent
baec232
commit d50d915
Showing
2 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
dist: bionic | ||
language: go | ||
go: | ||
- "1.12.x" | ||
- "1.13.x" | ||
addons: | ||
apt: | ||
packages: | ||
- ffmpeg | ||
- frei0r-plugins | ||
before_install: | ||
- go get -u github.com/sirupsen/logrus | ||
- go get -u github.com/viert/go-lame | ||
install: true | ||
script: | ||
- make build | ||
- make test | ||
- make install | ||
deploy: | ||
- provider: script | ||
script: echo "Deploy not enabled at the moment" | ||
skip_cleanup: true | ||
on: | ||
branch: master | ||
notifications: | ||
email: false | ||
env: GO111MODULE=on |