-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move actual CI tests into .travis.yml, and simplify the Debian packaging Makefile as a result. Feel free to re-add package building to Travis as another entry in the `scripts:` array.
- Loading branch information
1 parent
39e01d8
commit 0c625fa
Showing
2 changed files
with
7 additions
and
21 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,22 +1,15 @@ | ||
language: go # Use go language for shfmt | ||
go: | ||
- master | ||
|
||
# Use container-based infrastructure for quicker build start-up | ||
sudo: false | ||
language: minimal | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- debian-sid # Grab shellcheck from the Debian repo (o_O) | ||
packages: | ||
- shellcheck | ||
|
||
install: | ||
- go get -u github.com/mvdan/sh/cmd/shfmt | ||
before_install: | ||
- go get -u mvdan.cc/sh/cmd/shfmt | ||
|
||
script: | ||
- make check | ||
|
||
matrix: | ||
fast_finish: true | ||
- shellcheck -e SC1091 acts | ||
- shfmt -i 4 -d acts | ||
- shellcheck -e SC2034 acts.conf.sample | ||
- shfmt -i 4 -d acts.conf.sample |
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