-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #121 from phase2/develop
2.0.0 release
- Loading branch information
Showing
64 changed files
with
2,440 additions
and
1,790 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 |
---|---|---|
|
@@ -2,4 +2,6 @@ dist | |
build | ||
vendor | ||
.idea | ||
.outrigger.yml | ||
.outrigger.yml | ||
.DS_Store | ||
|
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,78 @@ | ||
# One release file to rule them all | ||
project_name: outrigger-cli | ||
|
||
# Platforms/architectures to target | ||
builds: | ||
- binary: rig | ||
main: ./cmd/main.go | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- windows | ||
- darwin | ||
- linux | ||
goarch: | ||
- amd64 | ||
|
||
# Generating the archives | ||
archive: | ||
name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}" | ||
format: tar.gz | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
replacements: | ||
darwin: macOS | ||
|
||
# Publishing releases to GitHub | ||
release: | ||
github: | ||
owner: phase2 | ||
name: rig | ||
# draft: true # This also prevents a homebrew release from getting generated | ||
|
||
# Publishing Homebrew Formula to the Tap repo | ||
brew: | ||
github: | ||
owner: phase2 | ||
name: homebrew-outrigger | ||
|
||
# Git author used to commit to the repository. | ||
# Defaults are shown. | ||
commit_author: | ||
name: Outrigger | ||
email: [email protected] | ||
|
||
folder: Formula | ||
homepage: "https://outrigger.sh/" | ||
description: "Containerized development environment for projects. See https://docs.outrigger.sh for documentation." | ||
dependencies: | ||
- docker | ||
- docker-machine | ||
- docker-compose | ||
- docker-machine-nfs | ||
- unison | ||
- eugenmayer/dockersync/unox | ||
|
||
# So you can `brew test` your formula. | ||
# Default is empty. | ||
test: | | ||
system "#{bin}/rig", "--version" | ||
# Custom install script for brew. | ||
# Default is 'bin.install "program"'. | ||
install: | | ||
bin.install "rig" | ||
# Build linux packages | ||
fpm: | ||
vendor: Phase2 | ||
homepage: https://outrigger.sh/ | ||
maintainer: Outrigger <[email protected]> | ||
description: Containerized development environment for projects. See https://docs.outrigger.sh for documentation. | ||
license: MIT | ||
formats: | ||
- deb | ||
- rpm | ||
dependencies: | ||
- docker-ce |
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,9 +1,20 @@ | ||
FROM golang:1.7-alpine | ||
FROM golang:1.9-alpine | ||
|
||
RUN apk add --no-cache \ | ||
ca-certificates \ | ||
git \ | ||
gcc \ | ||
musl-dev \ | ||
&& go get github.com/tools/godep \ | ||
&& go get github.com/mitchellh/gox | ||
ca-certificates \ | ||
git \ | ||
gcc \ | ||
libffi-dev \ | ||
make \ | ||
musl-dev \ | ||
rpm \ | ||
ruby \ | ||
ruby-dev \ | ||
tar | ||
|
||
RUN go get -u github.com/golang/dep/... \ | ||
&& go get -u github.com/alecthomas/gometalinter \ | ||
&& go get -u github.com/goreleaser/goreleaser | ||
|
||
RUN gometalinter --install --update | ||
RUN gem install --no-rdoc --no-ri fpm |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,55 @@ | ||
|
||
# Gopkg.toml example | ||
# | ||
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md | ||
# for detailed Gopkg.toml documentation. | ||
# | ||
# required = ["github.com/user/thing/cmd/thing"] | ||
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] | ||
# | ||
# [[constraint]] | ||
# name = "github.com/user/project" | ||
# version = "1.0.0" | ||
# | ||
# [[constraint]] | ||
# name = "github.com/user/project2" | ||
# branch = "dev" | ||
# source = "github.com/myfork/project2" | ||
# | ||
# [[override]] | ||
# name = "github.com/x/y" | ||
# version = "2.4.0" | ||
|
||
|
||
[[constraint]] | ||
name = "github.com/bitly/go-simplejson" | ||
version = "0.5.0" | ||
|
||
[[constraint]] | ||
name = "github.com/fatih/color" | ||
version = "1.5.0" | ||
|
||
[[constraint]] | ||
name = "github.com/mattn/go-isatty" | ||
version = "0.0.3" | ||
|
||
[[constraint]] | ||
name = "github.com/hashicorp/go-version" | ||
branch = "master" | ||
|
||
[[constraint]] | ||
name = "github.com/kardianos/osext" | ||
branch = "master" | ||
|
||
[[constraint]] | ||
name = "github.com/urfave/cli" | ||
version = "1.20.0" | ||
|
||
[[constraint]] | ||
name = "gopkg.in/yaml.v2" | ||
branch = "v2" | ||
|
||
[[constraint]] | ||
name = "github.com/martinlindhe/notify" | ||
branch = "master" | ||
|
Oops, something went wrong.