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
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ concurrency:
# repo env variable doesn't work for PR from forks
env:
CI_IMAGE: "useink/ci"
POLKADOT_SDK_COMMIT: "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0"
POLKADOT_SDK_BRANCH: "master"
POLKADOT_SDK_BRANCH: "unstable2507"
RUST_VERSION: 1.88.0

jobs:
Expand Down Expand Up @@ -99,7 +98,7 @@ jobs:
echo "######## Building eth-rpc ########"
git clone --depth 300 --branch $POLKADOT_SDK_BRANCH https://github.com/paritytech/polkadot-sdk.git
cd polkadot-sdk
git checkout $POLKADOT_SDK_COMMIT
git checkout $POLKADOT_SDK_BRANCH
cargo build --locked --profile production -p pallet-revive-eth-rpc --bin eth-rpc
cd ..
echo "######## Packing artifacts ########"
Expand Down Expand Up @@ -160,7 +159,7 @@ jobs:
echo "######## Building eth-rpc ########"
git clone --depth 300 --branch $POLKADOT_SDK_BRANCH https://github.com/paritytech/polkadot-sdk.git
cd polkadot-sdk
git checkout $POLKADOT_SDK_COMMIT
git checkout $POLKADOT_SDK_BRANCH
cargo build --locked --profile production -p pallet-revive-eth-rpc --bin eth-rpc --target aarch64-unknown-linux-gnu
cd ..
echo "######## Packing artifacts ########"
Expand Down Expand Up @@ -223,7 +222,7 @@ jobs:
cargo build --release --target x86_64-apple-darwin
echo "######## cargo build aarch64-apple-darwin eth-rpc ########"
cd polkadot-sdk
git checkout $POLKADOT_SDK_COMMIT
git checkout $POLKADOT_SDK_BRANCH
cargo build --locked --profile production -p pallet-revive-eth-rpc --bin eth-rpc --target aarch64-apple-darwin
echo "######## cargo build x86_64-apple-darwin eth-rpc ########"
cargo build --locked --profile production -p pallet-revive-eth-rpc --bin eth-rpc --target x86_64-apple-darwin
Expand Down
Loading
Loading