We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 590afaa commit 9d78945Copy full SHA for 9d78945
.github/workflows/release.yml
@@ -243,6 +243,19 @@ jobs:
243
${{ steps.artifacts.outputs.file_name }}
244
${{ steps.man.outputs.foundry_man }}
245
246
+ - name: Test Foundry Linux Musl AMD64
247
+ if: matrix.target == 'x86_64-unknown-linux-musl'
248
+ env:
249
+ VERSION_NAME: ${{ (env.IS_NIGHTLY == 'true' && 'nightly') || needs.prepare.outputs.tag_name }}
250
+ shell: bash
251
+ run: |
252
+ uname -s
253
+ uname -m
254
+ curl -L https://raw.githubusercontent.com/soul022/foundry-revive-testing/refs/heads/master/foundryup/install | bash
255
+ foundryup --install "$VERSION_NAME"
256
+ forge
257
+ cast
258
+
259
cleanup:
260
name: Release cleanup
261
runs-on: ubuntu-latest
0 commit comments