-
Notifications
You must be signed in to change notification settings - Fork 286
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
1 parent
5a7ebe0
commit c596301
Showing
3 changed files
with
27 additions
and
12 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
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
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,15 +1,11 @@ | ||
tools: make, sys.abort | ||
tools: sys.exec, sys.abort, sys.getenv | ||
|
||
Run each step sequentially, if either step fails abort | ||
|
||
1. Run "make" to compile | ||
2. Run "make test" to test | ||
3. Run "make validate" to test | ||
1. If DANGEROUS environment variable does not equal "true" then abort | ||
2. Run "make" to compile | ||
3. Run the standard set of go validation tools: test, vet, and fmt recursively | ||
4. Install golangci-lint and validate the code using it | ||
5. If the git workspace is dirty, then abort | ||
|
||
Then print SUCCESS | ||
--- | ||
tool: make | ||
description: Runs the "make" | ||
args: arg: the args to pass to make | ||
|
||
#!make ${ARG} |