-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
237 changed files
with
15,763 additions
and
6,421 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
*.go text eol=lf | ||
* text=auto | ||
contract/sqlite3-binding.* linguist-vendored | ||
contract/sqlite3*.* linguist-vendored=true | ||
libtool/src/gmp-*/* linguist-vendored=true | ||
|
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
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,18 +1,16 @@ | ||
FROM golang:alpine as builder | ||
RUN apk update && apk add git glide cmake build-base m4 | ||
FROM golang:1.12.5-alpine3.9 as builder | ||
RUN apk update && apk add git cmake build-base m4 | ||
ENV GOPATH $HOME/go | ||
ARG GIT_TAG | ||
RUN go get -d github.com/aergoio/aergo | ||
WORKDIR ${GOPATH}/src/github.com/aergoio/aergo | ||
RUN git checkout --detach ${GIT_TAG} && git submodule init && git submodule update && cmake . | ||
RUN git checkout --detach ${GIT_TAG} && git submodule init && git submodule update | ||
RUN make polaris colaris | ||
|
||
FROM alpine:3.8 | ||
FROM alpine:3.9 | ||
RUN apk add libgcc | ||
COPY --from=builder $HOME/go/src/github.com/aergoio/aergo/bin/polaris /usr/local/bin/ | ||
COPY --from=builder $HOME/go/src/github.com/aergoio/aergo/bin/colaris /usr/local/bin/ | ||
COPY --from=builder $HOME/go/src/github.com/aergoio/aergo/libtool/lib/* /usr/local/lib/ | ||
ENV LD_LIBRARY_PATH="/usr/local/lib:${LD_LIBRARY_PATH}" | ||
|
||
WORKDIR /tools/ | ||
CMD ["polaris"] |
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
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
Submodule aergo-protobuf
updated
5 files
+6 −0 | CHANGELOG.md | |
+17 −17 | proto/p2p.proto | |
+1 −1 | proto/polarrpc.proto | |
+40 −0 | proto/raft.proto | |
+17 −0 | proto/rpc.proto |
Oops, something went wrong.