Skip to content

Commit 1b9a876

Browse files
[ stable2512] Post crates release chnages (#10695)
This PR contains stable2512 crates release changes: - crates versions bumps - spec_version bumps - prdoc reordering --------- Co-authored-by: pgherveou <pgherveou@gmail.com>
1 parent 260ca01 commit 1b9a876

File tree

603 files changed

+14013
-8994
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

603 files changed

+14013
-8994
lines changed

.github/workflows/release-reusable-rc-build.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,20 @@ jobs:
189189
touch ~/.gnupg/dirmngr.conf
190190
echo "standard-resolver" > ~/.gnupg/dirmngr.conf
191191
192+
# - name: Install solc
193+
# run: brew install solidity
192194
- name: Install solc
193-
run: brew install solidity
195+
run: |
196+
# Install solc 0.8.30 directly (0.8.31+ not supported by resolc)
197+
SOLC_VERSION="0.8.30"
198+
curl -Lsf --show-error -o $HOME/.cargo/bin/solc "https://github.com/ethereum/solidity/releases/download/v${SOLC_VERSION}/solc-macos"
199+
chmod +x $HOME/.cargo/bin/solc
200+
xattr -c $HOME/.cargo/bin/solc
201+
$HOME/.cargo/bin/solc --version
194202
195203
- name: Install resolc
196204
run: |
197-
VERSION="0.3.0"
205+
VERSION="0.5.0"
198206
ASSET_URL="https://github.com/paritytech/revive/releases/download/v$VERSION/resolc-universal-apple-darwin"
199207
echo "Downloading resolc v$VERSION from $ASSET_URL"
200208
curl -Lsf --show-error -o $HOME/.cargo/bin/resolc "$ASSET_URL"

.github/workflows/tests-misc.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,16 @@ jobs:
377377
rustup component add clippy rust-docs rust-src rustfmt rustc rust-std
378378
- name: Install protobuf
379379
run: brew install protobuf
380-
- name: install solc
381-
run: brew install solidity
380+
# - name: install solc
381+
# run: brew install solidity
382+
- name: Install solc
383+
run: |
384+
# Install solc 0.8.30 directly (0.8.31+ not supported by resolc)
385+
SOLC_VERSION="0.8.30"
386+
curl -Lsf --show-error -o $HOME/.cargo/bin/solc "https://github.com/ethereum/solidity/releases/download/v${SOLC_VERSION}/solc-macos"
387+
chmod +x $HOME/.cargo/bin/solc
388+
xattr -c $HOME/.cargo/bin/solc
389+
$HOME/.cargo/bin/solc --version
382390
- name: Install resolc
383391
run: |
384392
source $HOME/.cargo/env

0 commit comments

Comments
 (0)