-
-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "initial port from pop/fizz to fizz"
This reverts commit ca33e45.
- Loading branch information
Showing
169 changed files
with
12,427 additions
and
128 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,67 @@ | ||
project_name: pop | ||
release: | ||
github: | ||
owner: gobuffalo | ||
name: pop | ||
name_template: '{{.Tag}}' | ||
brew: | ||
commit_author: | ||
name: goreleaserbot | ||
email: [email protected] | ||
install: bin.install "soda" | ||
builds: | ||
- | ||
goos: | ||
- linux | ||
- darwin | ||
- windows | ||
goarch: | ||
- amd64 | ||
goarm: | ||
- "6" | ||
main: ./soda/main.go | ||
binary: soda-no-sqlite | ||
- | ||
goos: | ||
- darwin | ||
goarch: | ||
- amd64 | ||
goarm: | ||
- "6" | ||
main: ./soda/main.go | ||
binary: soda-with-sqlite | ||
flags: -tags sqlite | ||
archive: | ||
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm | ||
}}v{{ .Arm }}{{ end }}' | ||
format: tar.gz | ||
files: | ||
- licence* | ||
- LICENCE* | ||
- license* | ||
- LICENSE* | ||
- readme* | ||
- README* | ||
- changelog* | ||
- CHANGELOG* | ||
fpm: | ||
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm | ||
}}v{{ .Arm }}{{ end }}' | ||
bindir: /usr/local/bin | ||
snapcraft: | ||
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm | ||
}}v{{ .Arm }}{{ end }}' | ||
snapshot: | ||
name_template: SNAPSHOT-{{ .Commit }} | ||
checksum: | ||
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt' | ||
dist: dist | ||
sign: | ||
cmd: gpg | ||
args: | ||
- --output | ||
- $signature | ||
- --detach-sig | ||
- $artifact | ||
signature: ${artifact}.sig | ||
artifacts: none |
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,8 @@ | ||
from golang:1.7 | ||
|
||
RUN echo $GOPATH | ||
RUN mkdir -p $GOPATH/src/github.com/gobuffalo/pop | ||
WORKDIR $GOPATH/src/github.com/gobuffalo/pop | ||
ADD . . | ||
RUN go get -t -v ./... | ||
RUN SODA_DIALECT=sqlite go test ./... |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
Oops, something went wrong.