-
Notifications
You must be signed in to change notification settings - Fork 47
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
Showing
3 changed files
with
17 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"ArtifactsDest": "dist", | ||
"Tasks": [ | ||
"xc" | ||
], | ||
"BuildConstraints": "linux windows darwin freebsd", | ||
"TaskSettings": { | ||
"xc": { | ||
"GOARM": "7" | ||
} | ||
}, | ||
"ConfigVersion": "0.9" | ||
} | ||
|
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,5 +1,5 @@ | ||
all: | ||
gox --os="linux darwin" --output="build/{{.Dir}}_{{.OS}}_{{.Arch}}" ./cmd/phabulous | ||
goxc go-test xc archive rmbin | ||
|
||
clean: | ||
rm -r build | ||
rm -rf dist |
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 |
---|---|---|
|
@@ -47,7 +47,7 @@ func main() { | |
app.Usage = "A Phabricator bot in Go" | ||
|
||
// Set version and authorship info | ||
app.Version = "2.1.0-alpha1" | ||
app.Version = "2.3.1" | ||
app.Author = "Eduardo Trujillo <[email protected]>" | ||
|
||
// Setup the default action. This action will be triggered when no | ||
|