Skip to content

Commit dcab5a7

Browse files
authored
Update release.yml
1 parent 0bf1310 commit dcab5a7

File tree

1 file changed

+8
-33
lines changed

1 file changed

+8
-33
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -86,32 +86,22 @@ jobs:
8686
# `target`: Rust build target triple
8787
# `platform` and `arch`: Used in tarball names
8888
# `svm`: target platform to use for the Solc binary: https://github.com/roynalnaruto/svm-rs/blob/84cbe0ac705becabdc13168bae28a45ad2299749/svm-builds/build.rs#L4-L24
89-
- runner: ubuntu-20.04
90-
target: x86_64-unknown-linux-gnu
91-
svm_target_platform: linux-amd64
92-
platform: linux
93-
arch: amd64
94-
- runner: ubuntu-20.04
89+
- runner: ubuntu-24.04
9590
target: x86_64-unknown-linux-musl
9691
svm_target_platform: linux-amd64
9792
platform: linux
9893
arch: amd64
99-
- runner: ubuntu-20.04
100-
target: aarch64-unknown-linux-gnu
101-
svm_target_platform: linux-aarch64
102-
platform: linux
103-
arch: arm64
104-
- runner: ubuntu-20.04
105-
target: aarch64-unknown-linux-musl
106-
svm_target_platform: linux-aarch64
107-
platform: linux
108-
arch: arm64
109-
- runner: macos-latest-large
94+
- runner: macos-13-large
95+
target: x86_64-apple-darwin
96+
svm_target_platform: macosx-amd64
97+
platform: darwin
98+
arch: amd64
99+
- runner: macos-14
110100
target: aarch64-apple-darwin
111101
svm_target_platform: macosx-aarch64
112102
platform: darwin
113103
arch: arm64
114-
- runner: Windows
104+
- runner: windows-2022
115105
target: x86_64-pc-windows-msvc
116106
svm_target_platform: windows-amd64
117107
platform: win32
@@ -132,21 +122,6 @@ jobs:
132122
echo "SDKROOT=$(xcrun -sdk macosx --show-sdk-path)" >> $GITHUB_ENV
133123
echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version)" >> $GITHUB_ENV
134124
135-
- name: Linux ARM setup
136-
if: matrix.target == 'aarch64-unknown-linux-gnu'
137-
run: |
138-
sudo apt-get update -y
139-
sudo apt-get install -y gcc-aarch64-linux-gnu
140-
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
141-
142-
- name: Linux ARM setup musl
143-
if: matrix.target == 'aarch64-unknown-linux-musl'
144-
run: |
145-
sudo apt-get update -y
146-
sudo apt-get install -y gcc-aarch64-linux-gnu
147-
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
148-
echo "export CC=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
149-
150125
- name: Linux ARM setup musl x86_64
151126
if: matrix.target == 'x86_64-unknown-linux-musl'
152127
run: |

0 commit comments

Comments
 (0)