Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go-kosu: automatically load latest addresses during build #244

Merged
merged 6 commits into from Aug 29, 2019
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

@@ -26,5 +26,8 @@ RUN unzip /tmp/tm.zip
RUN install tendermint /usr/local/bin
RUN rm tendermint

# install go-bindata
RUN GO111MODULE=off go get -u github.com/go-bindata/go-bindata/...

# install golintci
RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v${GOLINTCI_RELEASE}
@@ -16,6 +16,7 @@ RUN tar -xf go1.12.6.linux-amd64.tar.gz --totals
RUN mv go /usr/local
ENV PATH=$GOPATH/bin:$GOROOT/bin:$PATH
RUN go version
RUN GO111MODULE=off go get -u github.com/go-bindata/go-bindata/...

RUN git clone https://github.com/ethereum/go-ethereum
RUN cd go-ethereum && git checkout release/1.8 && make devtools
@@ -1,12 +1,13 @@
{
"name": "@kosu/go-kosu",
"private": true,
"version": "0.0.1",
"version": "0.1.0-beta.2",
"description": "Development and CI docker images and supporting scripts for Kosu.",
"repository": "https://github.com/ParadigmFoundation/kosu-monorepo.git",
"repository": "https://github.com/ParadigmFoundation/kosu-monorepo/blob/master/packages/go-kosu",
"license": "MIT",
"scripts": {
"build": "yarn abigen && make",
"build": "yarn abigen && yarn bindata && make",
"bindata": "go generate ./witness",
"abigen": "jq '.compilerOutput.abi' node_modules/@kosu/system-contracts/generated-artifacts/EventEmitter.json | abigen --abi - --pkg witness --type EventEmitter -out witness/event_emitter.go",
"docs": "yarn docs:clean && yarn docs:setup && yarn docs:rpc",
"docs:clean": "rm -rf ./docs/",
@@ -15,6 +16,6 @@
},
"config": {},
"dependencies": {
"@kosu/system-contracts": "^0.1.5"
"@kosu/system-contracts": "0.2.1"
}
}

Large diffs are not rendered by default.

@@ -1914,7 +1914,7 @@
version "0.1.3"
resolved "https://registry.yarnpkg.com/@istanbuljs/nyc-config-typescript/-/nyc-config-typescript-0.1.3.tgz#944d15b3ebdb71f963a628daffaa25ade981bb86"

"@kosu/system-contracts@^0.1.0-alpha.1", "@kosu/system-contracts@^0.1.5":
"@kosu/system-contracts@^0.1.0-alpha.1":
version "0.1.6"
resolved "https://registry.yarnpkg.com/@kosu/system-contracts/-/system-contracts-0.1.6.tgz#82199e2e528c89ac079fce0c69259ea4d98488a3"
integrity sha512-OYdK8Au5cvsWWgDZ5OEhTiY68WcP+ql7GjITCqGVolqSxfzIQ/UPmVWk+0IOHN0eVS4NTZMKKaxDowNa6hWadg==
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.