Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reset because not verified
Browse files Browse the repository at this point in the history
Kayanski committed Dec 17, 2024
1 parent b6aed36 commit 84927ed
Showing 2 changed files with 24 additions and 22 deletions.
36 changes: 18 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -124,7 +124,7 @@ jobs:
build-framework:
docker:
- image: cimg/rust:1.80.0
- image: cimg/rust:1.83.0
resource_class: xlarge
steps:
- setup_remote_docker
@@ -157,7 +157,7 @@ jobs:
git checkout "$CIRCLE_BRANCH-build"
- restore_cache:
keys:
- cargocache-v2-build-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
- cargocache-v2-build-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
- run:
name: Build framework WASM artifacts
command: |
@@ -170,7 +170,7 @@ jobs:
- framework/target/debug/.fingerprint
- framework/target/debug/build
- framework/target/debug/deps
key: cargocache-v2-build-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
key: cargocache-v2-build-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
- run:
name: Import GPG Key
command: |
@@ -203,7 +203,7 @@ jobs:

build-modules:
docker:
- image: cimg/rust:1.80.0
- image: cimg/rust:1.83.0
resource_class: xlarge
steps:
- setup_remote_docker
@@ -271,7 +271,7 @@ jobs:

build-schemas:
docker:
- image: cimg/rust:1.80.0
- image: cimg/rust:1.83.0
resource_class: xlarge
steps:
- setup_remote_docker
@@ -297,7 +297,7 @@ jobs:
git checkout "$CIRCLE_BRANCH-build"
- restore_cache:
keys:
- cargocache-v2-build-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
- cargocache-v2-build-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
- run:
name: Generate schemas
command: |
@@ -370,7 +370,7 @@ jobs:
tests:
docker:
- image: cimg/rust:1.80.0
- image: cimg/rust:1.83.0
resource_class: xlarge
steps:
- checkout
@@ -381,7 +381,7 @@ jobs:
cargo generate-lockfile
- restore_cache:
keys:
- cargocache-v2-tests-rust:1.80.0-{{ checksum "modules/Cargo.lock" }}
- cargocache-v2-tests-rust:1.83.0-{{ checksum "modules/Cargo.lock" }}
- run:
name: Modules tests
command: |
@@ -392,11 +392,11 @@ jobs:
- modules/target/debug/.fingerprint
- modules/target/debug/build
- modules/target/debug/deps
key: cargocache-v2-tests-rust:1.80.0-{{ checksum "modules/Cargo.lock" }}
key: cargocache-v2-tests-rust:1.83.0-{{ checksum "modules/Cargo.lock" }}

deploy:
docker:
- image: cimg/rust:1.80.0
- image: cimg/rust:1.83.0
resource_class: large
steps:
- checkout
@@ -409,7 +409,7 @@ jobs:
fi
- restore_cache:
keys:
- cargocache-v2-deploy-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
- cargocache-v2-deploy-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
- run:
name: Decode and Deploy
command: |
@@ -450,11 +450,11 @@ jobs:
- framework/target/debug/.fingerprint
- framework/target/debug/build
- framework/target/debug/deps
key: cargocache-v2-deploy-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
key: cargocache-v2-deploy-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}

modules-coverage:
docker:
- image: cimg/rust:1.80.0
- image: cimg/rust:1.83.0
resource_class: xlarge
steps:
- setup_remote_docker
@@ -468,7 +468,7 @@ jobs:
fi
- restore_cache:
keys:
- cargocache-v2-coverage-rust:1.80.0-{{ checksum "modules/Cargo.lock" }}
- cargocache-v2-coverage-rust:1.83.0-{{ checksum "modules/Cargo.lock" }}
- run:
name: Run tests with coverage for modules
command: |
@@ -481,11 +481,11 @@ jobs:
- modules/target/debug/.fingerprint
- modules/target/debug/build
- modules/target/debug/deps
key: cargocache-v2-deploy-rust:1.80.0-{{ checksum "modules/Cargo.lock" }}
key: cargocache-v2-deploy-rust:1.83.0-{{ checksum "modules/Cargo.lock" }}

framework-coverage:
docker:
- image: cimg/rust:1.80.0
- image: cimg/rust:1.83.0
resource_class: xlarge
steps:
- rust_install_nightly
@@ -500,7 +500,7 @@ jobs:
fi
- restore_cache:
keys:
- cargocache-v2-coverage-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
- cargocache-v2-coverage-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
- run:
name: Run tests with coverage for framework
command: |
@@ -513,7 +513,7 @@ jobs:
- framework/target/debug/.fingerprint
- framework/target/debug/build
- framework/target/debug/deps
key: cargocache-v2-deploy-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
key: cargocache-v2-deploy-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}

pass:
docker:
10 changes: 6 additions & 4 deletions framework/workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ memchr = { version = "2" }
num-traits = { version = "0.2", default-features = false, features = ["i128", "libm"] }
phf_shared = { version = "0.11", default-features = false, features = ["std"] }
ppv-lite86 = { version = "0.2", default-features = false, features = ["simd", "std"] }
prost = { version = "0.13", features = ["prost-derive"] }
prost = { version = "0.13", default-features = false, features = ["prost-derive", "std"] }
rand = { version = "0.8", features = ["small_rng"] }
rand_chacha = { version = "0.3", default-features = false, features = ["std"] }
rand_core = { version = "0.6", default-features = false, features = ["std"] }
@@ -47,7 +47,6 @@ serde_json = { version = "1", features = ["alloc"] }
sha2 = { version = "0.10", features = ["oid"] }
spki = { version = "0.7", default-features = false, features = ["pem", "std"] }
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
tendermint-proto-d585fab2519d2d1 = { package = "tendermint-proto", version = "0.38" }
tendermint-proto-f645eb7eb1285ab4 = { package = "tendermint-proto", version = "0.39", features = ["std"] }
time = { version = "0.3", default-features = false, features = ["macros", "parsing", "std"] }
zeroize = { version = "1", features = ["zeroize_derive"] }
@@ -74,7 +73,7 @@ memchr = { version = "2" }
num-traits = { version = "0.2", default-features = false, features = ["i128", "libm"] }
phf_shared = { version = "0.11", default-features = false, features = ["std"] }
ppv-lite86 = { version = "0.2", default-features = false, features = ["simd", "std"] }
prost = { version = "0.13", features = ["prost-derive"] }
prost = { version = "0.13", default-features = false, features = ["prost-derive", "std"] }
rand = { version = "0.8", features = ["small_rng"] }
rand_chacha = { version = "0.3", default-features = false, features = ["std"] }
rand_core = { version = "0.6", default-features = false, features = ["std"] }
@@ -88,7 +87,6 @@ spki = { version = "0.7", default-features = false, features = ["pem", "std"] }
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
syn-dff4ba8e3ae991db = { package = "syn", version = "1", features = ["extra-traits", "full", "visit", "visit-mut"] }
syn-f595c2ba2a3f28df = { package = "syn", version = "2", features = ["extra-traits", "full", "visit", "visit-mut"] }
tendermint-proto-d585fab2519d2d1 = { package = "tendermint-proto", version = "0.38" }
tendermint-proto-f645eb7eb1285ab4 = { package = "tendermint-proto", version = "0.39", features = ["std"] }
time = { version = "0.3", default-features = false, features = ["macros", "parsing", "std"] }
zeroize = { version = "1", features = ["zeroize_derive"] }
@@ -155,6 +153,7 @@ serde_json = { version = "1", default-features = false, features = ["raw_value"]
signature = { version = "2", default-features = false, features = ["digest", "rand_core", "std"] }
smallvec = { version = "1", default-features = false, features = ["const_new"] }
tendermint = { version = "0.38", features = ["secp256k1"] }
tendermint-proto-d585fab2519d2d1 = { package = "tendermint-proto", version = "0.38" }
time = { version = "0.3" }
tokio-stream = { version = "0.1", features = ["net"] }
tokio-util = { version = "0.7", features = ["codec", "io", "time"] }
@@ -229,6 +228,7 @@ signature = { version = "2", default-features = false, features = ["digest", "ra
smallvec = { version = "1", default-features = false, features = ["const_new"] }
syn-f595c2ba2a3f28df = { package = "syn", version = "2", default-features = false, features = ["fold"] }
tendermint = { version = "0.38", features = ["secp256k1"] }
tendermint-proto-d585fab2519d2d1 = { package = "tendermint-proto", version = "0.38" }
time = { version = "0.3" }
tokio-stream = { version = "0.1", features = ["net"] }
tokio-util = { version = "0.7", features = ["codec", "io", "time"] }
@@ -300,6 +300,7 @@ serde_json = { version = "1", default-features = false, features = ["raw_value"]
signature = { version = "2", default-features = false, features = ["digest", "rand_core", "std"] }
smallvec = { version = "1", default-features = false, features = ["const_new"] }
tendermint = { version = "0.38", features = ["secp256k1"] }
tendermint-proto-d585fab2519d2d1 = { package = "tendermint-proto", version = "0.38" }
time = { version = "0.3" }
tokio-stream = { version = "0.1", features = ["net"] }
tokio-util = { version = "0.7", features = ["codec", "io", "time"] }
@@ -373,6 +374,7 @@ signature = { version = "2", default-features = false, features = ["digest", "ra
smallvec = { version = "1", default-features = false, features = ["const_new"] }
syn-f595c2ba2a3f28df = { package = "syn", version = "2", default-features = false, features = ["fold"] }
tendermint = { version = "0.38", features = ["secp256k1"] }
tendermint-proto-d585fab2519d2d1 = { package = "tendermint-proto", version = "0.38" }
time = { version = "0.3" }
tokio-stream = { version = "0.1", features = ["net"] }
tokio-util = { version = "0.7", features = ["codec", "io", "time"] }

0 comments on commit 84927ed

Please sign in to comment.