Skip to content

Commit

Permalink
Uppdate docker and travis
Browse files Browse the repository at this point in the history
  • Loading branch information
RadhiFadlillah committed Jun 8, 2018
1 parent 8c36148 commit bb0d943
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ bin/
README.md
Dockerfile
LICENSE
Makefile
README.md
screenshot.png
screenshot/*
shiori
shiori.db
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ script:
- go test -v -race ./...
# only build binaries from the latest Go release.
- if [ "${LATEST}" = "true" ]; then
env GOARCH=386 go build -o shiori_linux_386;
env GOARCH=amd64 go build -o shiori_linux_amd64;
env GOOS=windows GOARCH=386 CC=i686-w64-mingw32-gcc go build -o shiori_windows_386.exe;
env GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-gcc go build -o shiori_windows_amd64.exe;
env CGO_ENABLED=1 GOARCH=386 go build -v -o shiori_linux_386;
env CGO_ENABLED=1 GOARCH=amd64 go build -v -o shiori_linux_amd64;
env CGO_ENABLED=1 GOOS=windows GOARCH=386 CC=i686-w64-mingw32-gcc go build -v -o shiori_windows_386.exe;
env CGO_ENABLED=1 GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-gcc go build -v -o shiori_windows_amd64.exe;
fi

deploy:
Expand Down

0 comments on commit bb0d943

Please sign in to comment.