Skip to content
This repository has been archived by the owner on Oct 22, 2023. It is now read-only.

Commit

Permalink
change to 0.1.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pro-wh committed May 3, 2018
1 parent ea092a8 commit bcb627d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 23 deletions.
10 changes: 4 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ jobs:
- checkout

# Install Ekiden binaries.
# %%% change --branch ... to --tag ...
- run:
environment:
CARGO_TARGET_DIR: target
command: >-
cargo install
--git https://github.com/oasislabs/ekiden
--branch pro-wh/feature/targetpath
--tag 0.1.0-alpha.4
--debug
ekiden-tools
- run:
Expand All @@ -27,7 +26,7 @@ jobs:
command: >-
cargo install
--git https://github.com/oasislabs/ekiden
--branch pro-wh/feature/targetpath
--tag 0.1.0-alpha.4
--debug
ekiden-compute
- run:
Expand All @@ -36,15 +35,14 @@ jobs:
command: >-
cargo install
--git https://github.com/oasislabs/ekiden
--branch pro-wh/feature/targetpath
--tag 0.1.0-alpha.4
--debug
ekiden-consensus
# Build key manager contract.
# %%% change --branch ... to --tag ...
- run: >-
cargo ekiden build-contract
--git https://github.com/oasislabs/ekiden
--branch pro-wh/feature/targetpath
--tag 0.1.0-alpha.4
--output target/contract
--target-dir "$PWD/target"
ekiden-key-manager
Expand Down
10 changes: 4 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@ etcommon-hexutil = { version = "0.2", default-features = false }
sha3 = "0.6"
sputnikvm = { version = "0.9", default-features = false }
evm-api = { path = "./api" }
# %%% change branch = ... to tag = ...
ekiden-core = { git = "https://github.com/oasislabs/ekiden", branch = "pro-wh/feature/targetpath" }
ekiden-trusted = { git = "https://github.com/oasislabs/ekiden", branch = "pro-wh/feature/targetpath" }
ekiden-core = { git = "https://github.com/oasislabs/ekiden", tag = "0.1.0-alpha.4" }
ekiden-trusted = { git = "https://github.com/oasislabs/ekiden", tag = "0.1.0-alpha.4" }
protobuf = "1.4.3"

[build-dependencies]
# %%% change branch = ... to tag = ...
ekiden-tools = { git = "https://github.com/oasislabs/ekiden", branch = "pro-wh/feature/targetpath" }
ekiden-edl = { git = "https://github.com/oasislabs/ekiden", branch = "pro-wh/feature/targetpath" }
ekiden-tools = { git = "https://github.com/oasislabs/ekiden", tag = "0.1.0-alpha.4" }
ekiden-edl = { git = "https://github.com/oasislabs/ekiden", tag = "0.1.0-alpha.4" }
6 changes: 2 additions & 4 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ authors = ["Oasis Labs Inc. <[email protected]>"]
build = "build.rs"

[dependencies]
# %%% change branch = ... to tag = ...
ekiden-core = { git = "https://github.com/oasislabs/ekiden", branch = "pro-wh/feature/targetpath" }
ekiden-core = { git = "https://github.com/oasislabs/ekiden", tag = "0.1.0-alpha.4" }
protobuf = "1.4.3"

[build-dependencies]
# %%% change branch = ... to tag = ...
ekiden-tools = { git = "https://github.com/oasislabs/ekiden", branch = "pro-wh/feature/targetpath" }
ekiden-tools = { git = "https://github.com/oasislabs/ekiden", tag = "0.1.0-alpha.4" }
7 changes: 3 additions & 4 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ authors = ["Oasis Labs Inc. <[email protected]>", "Wei Tang <[email protected]>"]

## Ekiden client dependencies

# %%% change branch = ... to tag = ...
client-utils = { git = "https://github.com/oasislabs/ekiden", branch = "pro-wh/feature/targetpath" }
ekiden-core = { git = "https://github.com/oasislabs/ekiden", branch = "pro-wh/feature/targetpath" }
ekiden-rpc-client = { git = "https://github.com/oasislabs/ekiden", branch = "pro-wh/feature/targetpath" }
client-utils = { git = "https://github.com/oasislabs/ekiden", tag = "0.1.0-alpha.4" }
ekiden-core = { git = "https://github.com/oasislabs/ekiden", tag = "0.1.0-alpha.4" }
ekiden-rpc-client = { git = "https://github.com/oasislabs/ekiden", tag = "0.1.0-alpha.4" }
evm-api = { path = "../api" }
clap = "2.29.1"
rand = "0.4"
Expand Down
5 changes: 2 additions & 3 deletions docker/deployment/build-images-inner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ EOF
fi

# Build all Ekiden binaries and resources.
# %%% change --branch ... to --tag ...
CARGO_TARGET_DIR=target cargo install --force --git https://github.com/oasislabs/ekiden --branch pro-wh/feature/targetpath ekiden-tools
cargo ekiden build-contract --git https://github.com/oasislabs/ekiden --branch pro-wh/feature/targetpath --output target/contract --target-dir target --release ekiden-key-manager
CARGO_TARGET_DIR=target cargo install --force --git https://github.com/oasislabs/ekiden --tag 0.1.0-alpha.4 ekiden-tools
cargo ekiden build-contract --git https://github.com/oasislabs/ekiden --tag 0.1.0-alpha.4 --output target/contract --target-dir target --release ekiden-key-manager
cargo ekiden build-contract --release --output-identity
(cd client && CARGO_BUILD_TARGET_DIR=../target cargo build --release)

Expand Down

0 comments on commit bcb627d

Please sign in to comment.