Skip to content

Commit

Permalink
Revert "initial port from pop/fizz to fizz"
Browse files Browse the repository at this point in the history
This reverts commit ca33e45.
  • Loading branch information
markbates committed Jun 16, 2018
1 parent 919d7f4 commit 5d13e5e
Show file tree
Hide file tree
Showing 169 changed files with 12,427 additions and 128 deletions.
67 changes: 67 additions & 0 deletions .goreleaser.yml
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
8 changes: 8 additions & 0 deletions Dockerfile
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 ./...
217 changes: 217 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file added Gopkg.toml
Empty file.
Loading

0 comments on commit 5d13e5e

Please sign in to comment.