From 56692e35549aaabbc45ee5dbaa38cf35a057c4db Mon Sep 17 00:00:00 2001 From: Asuka Date: Wed, 12 Nov 2025 18:04:10 +0800 Subject: [PATCH] Change upload job runs-on to macOS and cleanup workspace after uploaded --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81c21ba9b950..3be6bff4a7f8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -142,7 +142,7 @@ jobs: upload-to-s3: needs: [ b_windows, b_macos, b_linux, b_ems ] - runs-on: [ self-hosted, Linux ] + runs-on: [ self-hosted, macOS ] permissions: actions: read @@ -219,3 +219,5 @@ jobs: aws s3 cp solc-macos "s3://${bucket}/${{ github.sha }}/" --only-show-errors aws s3 cp solc-static-linux "s3://${bucket}/${{ github.sha }}/" --only-show-errors aws s3 cp soljson.js "s3://${bucket}/${{ github.sha }}/" --only-show-errors + + cd .. && rm -rf github solc-bin *.tar \ No newline at end of file