-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from olisystems/merge-upstream
Merge upstream
- Loading branch information
Showing
34 changed files
with
1,586 additions
and
89 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
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,4 +1,4 @@ | ||
FROM integritee/integritee-dev:0.1.13 | ||
FROM integritee/integritee-dev:0.2.2 | ||
LABEL maintainer="[email protected]" | ||
|
||
# By default we warp the service | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,10 @@ | |
### Cached Builder Stage | ||
################################################## | ||
# For the OLI guys, we removed the sccache part is it makes the native GA runners run out of space. | ||
FROM integritee/integritee-dev:0.2.1 AS builder | ||
# A builder stage that uses sccache to speed up local builds with docker | ||
# Installation and setup of sccache should be moved to the integritee-dev image, so we don't | ||
# always need to compile and install sccache on CI (where we have no caching so far). | ||
FROM integritee/integritee-dev:0.2.2 AS builder | ||
LABEL maintainer="[email protected]" | ||
|
||
# set environment variables | ||
|
@@ -40,6 +43,13 @@ ENV SGX_PRODUCTION=$SGX_PRODUCTION | |
ENV WORKHOME=/home/ubuntu/work | ||
ENV HOME=/home/ubuntu | ||
|
||
# RUN rustup default stable | ||
# RUN cargo install sccache --locked | ||
|
||
# ENV SCCACHE_CACHE_SIZE="20G" | ||
# ENV SCCACHE_DIR=$HOME/.cache/sccache | ||
# ENV RUSTC_WRAPPER="/opt/rust/bin/sccache" | ||
|
||
ARG WORKER_MODE_ARG | ||
ARG ADDITIONAL_FEATURES_ARG | ||
ENV WORKER_MODE=$WORKER_MODE_ARG | ||
|
@@ -74,12 +84,12 @@ RUN apt-get install -y \ | |
libsgx-aesm-quote-ex-plugin \ | ||
libsgx-dcap-default-qpl \ | ||
libsgx-dcap-ql \ | ||
libsgx-dcap-quote-verify \ | ||
libsgx-epid \ | ||
libsgx-headers \ | ||
libsgx-quote-ex \ | ||
libsgx-ra-network \ | ||
libsgx-ra-uefi \ | ||
libsgx-dcap-quote-verify \ | ||
libsgx-epid \ | ||
libsgx-headers \ | ||
libsgx-quote-ex \ | ||
libsgx-ra-network \ | ||
libsgx-ra-uefi \ | ||
libsgx-uae-service | ||
|
||
### Deployed CLI client | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "integritee-cli" | ||
version = "0.9.0" | ||
version = "0.12.0" | ||
authors = ["Integritee AG <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -25,12 +25,12 @@ thiserror = "1.0" | |
ws = { version = "0.9.1", features = ["ssl"] } | ||
|
||
# scs / integritee | ||
my-node-runtime = { package = "integritee-node-runtime", git = "https://github.com/integritee-network/integritee-node.git", branch = "polkadot-v0.9.42" } | ||
pallet-enclave-bridge = { git = "https://github.com/integritee-network/pallets.git", branch = "polkadot-v0.9.42" } | ||
my-node-runtime = { package = "integritee-node-runtime", git = "https://github.com/integritee-network/integritee-node.git", branch = "sdk-v0.12.0-polkadot-v0.9.42" } | ||
pallet-enclave-bridge = { git = "https://github.com/integritee-network/pallets.git", branch = "sdk-v0.12.0-polkadot-v0.9.42" } | ||
pallet-evm = { optional = true, git = "https://github.com/integritee-network/frontier.git", branch = "bar/polkadot-v0.9.42" } | ||
pallet-teerex = { git = "https://github.com/integritee-network/pallets.git", branch = "polkadot-v0.9.42" } | ||
pallet-teerex = { git = "https://github.com/integritee-network/pallets.git", branch = "sdk-v0.12.0-polkadot-v0.9.42" } | ||
# `default-features = false` to remove the jsonrpsee dependency. | ||
enclave-bridge-primitives = { git = "https://github.com/integritee-network/pallets.git", branch = "polkadot-v0.9.42" } | ||
enclave-bridge-primitives = { git = "https://github.com/integritee-network/pallets.git", branch = "sdk-v0.12.0-polkadot-v0.9.42" } | ||
substrate-api-client = { default-features = false, features = ["std", "ws-client"], git = "https://github.com/scs/substrate-api-client.git", branch = "polkadot-v0.9.42-tag-v0.10.0" } | ||
substrate-client-keystore = { git = "https://github.com/scs/substrate-api-client.git", branch = "polkadot-v0.9.42-tag-v0.10.0" } | ||
|
||
|
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
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
Oops, something went wrong.