-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ce Gao <[email protected]>
- Loading branch information
Showing
485 changed files
with
182,983 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 |
---|---|---|
|
@@ -22,3 +22,6 @@ _testmain.go | |
*.exe | ||
*.test | ||
*.prof | ||
|
||
maintainer | ||
|
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 |
---|---|---|
|
@@ -3,4 +3,3 @@ | |
Ce Gao <[email protected]> | ||
|
||
###### Auto generated by [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2017-04-27 | ||
|
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,15 @@ | ||
FROM alpine:3.5 | ||
MAINTAINER Ce Gao(gaocegege) <[email protected]> | ||
|
||
RUN apk add --no-cache git \ | ||
ruby \ | ||
ruby-irb \ | ||
ruby-rdoc \ | ||
&& gem install github_changelog_generator | ||
|
||
COPY maintainer /bin | ||
|
||
VOLUME /workdir | ||
WORKDIR /workdir | ||
|
||
ENTRYPOINT ["maintainer"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,17 @@ | ||
#!/bin/bash | ||
|
||
ROOT=$(dirname "${BASH_SOURCE}")/.. | ||
|
||
CONTAINER_DIR="/go/src/github.com/gaocegege/maintainer" | ||
|
||
cd ${ROOT} | ||
|
||
echo "Build maintainer CLI for alpine in Docker..." | ||
docker run --rm \ | ||
-v $(pwd):${CONTAINER_DIR} \ | ||
-e GOPATH=/go \ | ||
-w ${CONTAINER_DIR} \ | ||
golang:1.8-alpine \ | ||
sh -c "go build ." | ||
echo "Build successfully." | ||
cd - > /dev/null |
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,17 @@ | ||
#!/bin/bash | ||
|
||
ROOT=$(dirname "${BASH_SOURCE}")/.. | ||
|
||
CONTAINER_DIR="/go/src/github.com/gaocegege/maintainer" | ||
|
||
cd ${ROOT} | ||
|
||
echo "Build maintainer CLI in Docker..." | ||
docker run --rm \ | ||
-v $(pwd):${CONTAINER_DIR} \ | ||
-e GOPATH=/go \ | ||
-w ${CONTAINER_DIR} \ | ||
golang:1.8 \ | ||
sh -c "go build ." | ||
echo "Build successfully." | ||
cd - > /dev/null |
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,4 +1,5 @@ | ||
#!/bin/bash | ||
|
||
ROOT=$(dirname "${BASH_SOURCE}")/.. | ||
|
||
cd ${ROOT} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.