Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/check-semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,10 @@ jobs:
rustup component add rust-src --toolchain $TOOLCHAIN

- name: Install parity-publish
# Set the target dir to cache the build.
run: CARGO_TARGET_DIR=./target/ cargo install parity-publish@0.10.6 --locked -q
run: |
sudo apt-get update && sudo apt-get install -y --no-install-recommends libcurl4-openssl-dev pkg-config
# Set the target dir to cache the build.
CARGO_TARGET_DIR=./target/ cargo install parity-publish@0.10.6 --locked -q

- name: Get original PR number
shell: bash
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-check-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:

- name: install parity-publish
run: |
cargo install parity-publish@0.10.6 --locked -q
sudo apt-get update && sudo apt-get install -y --no-install-recommends libcurl4-openssl-dev pkg-config
cargo install parity-publish@0.10.10 --locked -q

- name: set current PR's prdoc name in a variable
env:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-check-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
save-if: ${{ github.ref == 'refs/heads/master' }}

- name: install parity-publish
run: cargo install parity-publish@0.10.6 --locked -q
run: |
sudo apt-get update && sudo apt-get install -y --no-install-recommends libcurl4-openssl-dev pkg-config
cargo install parity-publish@0.10.10 --locked -q

- name: parity-publish check
run: parity-publish --color always check --allow-unpublished
4 changes: 3 additions & 1 deletion .github/workflows/publish-claim-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
save-if: ${{ github.ref == 'refs/heads/master' }}

- name: install parity-publish
run: cargo install parity-publish@0.10.6 --locked -q
run: |
sudo apt-get update && sudo apt-get install -y --no-install-recommends libcurl4-openssl-dev pkg-config
cargo install parity-publish@0.10.10 --locked -q

- name: parity-publish claim
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-80_publish-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:

- name: Install parity-publish
run: |
apt-get update && apt-get install -y --no-install-recommends libcurl4-openssl-dev pkg-config
sudo apt-get update && sudo apt-get install -y --no-install-recommends libcurl4-openssl-dev pkg-config
cargo install parity-publish@0.10.10 --locked -q

- name: Run parity-publish plan
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1167,6 +1167,7 @@ polkadot-test-client = { path = "polkadot/node/test/client" }
polkadot-test-runtime = { path = "polkadot/runtime/test-runtime" }
polkadot-test-service = { path = "polkadot/node/test/service" }
polkavm = { version = "0.30.0", default-features = false }
polkavm-common = { version = "0.30.0", default-features = false }
polkavm-derive = "0.30.0"
polkavm-linker = "0.30.0"
portpicker = { version = "0.1.1" }
Expand Down
6 changes: 2 additions & 4 deletions substrate/frame/revive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
cargo-features = ["edition2024"]

[package]
name = "pallet-revive"
version = "0.1.0"
Expand Down Expand Up @@ -36,8 +34,8 @@ num-bigint = { workspace = true }
num-integer = { workspace = true }
num-traits = { workspace = true }
paste = { workspace = true }
polkavm = { version = "0.30.0", default-features = false }
polkavm-common = { version = "0.30.0", default-features = false, features = ["alloc"] }
polkavm = { workspace = true }
polkavm-common = { workspace = true, features = ["alloc"] }
rand = { workspace = true, optional = true }
rand_pcg = { workspace = true, optional = true }
revm = { workspace = true }
Expand Down
2 changes: 0 additions & 2 deletions substrate/frame/revive/rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
cargo-features = ["edition2024"]

[package]
name = "pallet-revive-eth-rpc"
version = "0.1.0"
Expand Down
Loading