release #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| isNightly: | |
| description: "Is this a nightly version or a release - Y or N" | |
| type: string | |
| required: true | |
| default: "Y" | |
| version: | |
| description: "stable version for the build" | |
| type: string | |
| required: false | |
| default: "v0.3.0" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| IS_NIGHTLY: ${{ inputs.isNightly == 'Y' }} | |
| PROFILE: maxperf | |
| STABLE_VERSION: ${{ inputs.version }} | |
| TAG_NAME: stable | |
| jobs: | |
| prepare: | |
| name: Prepare release | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| outputs: | |
| tag_name: ${{ env.TAG_NAME }} | |
| release_name: ${{ steps.release_info.outputs.release_name }} | |
| changelog: ${{ steps.build_changelog.outputs.changelog }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Compute release name and tag | |
| id: release_info | |
| run: | | |
| if [[ ${IS_NIGHTLY} == 'true' ]]; then | |
| echo "tag_name=nightly-${GITHUB_SHA}" >> $GITHUB_OUTPUT | |
| echo "release_name=Nightly ($(date '+%Y-%m-%d'))" >> $GITHUB_OUTPUT | |
| else | |
| echo "tag_name=${{ env.TAG_NAME }}" >> $GITHUB_OUTPUT | |
| echo "release_name=${{ env.TAG_NAME }}" >> $GITHUB_OUTPUT | |
| fi | |
| # Creates a `nightly-SHA` tag for this specific nightly | |
| # This tag is used for this specific nightly version's release | |
| # which allows users to roll back. It is also used to build | |
| # the changelog. | |
| - name: Create build-specific nightly tag | |
| if: ${{ env.IS_NIGHTLY == 'true' }} | |
| uses: actions/github-script@v7 | |
| env: | |
| TAG_NAME: ${{ env.TAG_NAME }} | |
| with: | |
| script: | | |
| const createTag = require('./.github/scripts/create-tag.js') | |
| await createTag({ github, context }, process.env.TAG_NAME) | |
| - name: Build changelog | |
| id: build_changelog | |
| uses: mikepenz/release-changelog-builder-action@v4 | |
| with: | |
| configuration: "./.github/changelog.json" | |
| fromTag: ${{ env.IS_NIGHTLY == 'true' && 'nightly' || env.STABLE_VERSION }} | |
| toTag: ${{ env.TAG_NAME }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| release: | |
| permissions: | |
| id-token: write | |
| contents: write | |
| attestations: write | |
| name: ${{ matrix.target }} (${{ matrix.runner }}) | |
| runs-on: ${{ matrix.runner }} | |
| timeout-minutes: 240 | |
| needs: prepare | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # `runner`: GHA runner label | |
| # `target`: Rust build target triple | |
| # `platform` and `arch`: Used in tarball names | |
| # `svm`: target platform to use for the Solc binary: https://github.com/roynalnaruto/svm-rs/blob/84cbe0ac705becabdc13168bae28a45ad2299749/svm-builds/build.rs#L4-L24 | |
| - runner: ubuntu-24.04 | |
| target: x86_64-unknown-linux-musl | |
| svm_target_platform: linux-amd64 | |
| platform: linux | |
| arch: amd64 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: ${{ matrix.target }} | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| key: ${{ matrix.target }} | |
| cache-on-failure: true | |
| - name: Apple M1 setup | |
| if: matrix.target == 'aarch64-apple-darwin' | |
| run: | | |
| echo "SDKROOT=$(xcrun -sdk macosx --show-sdk-path)" >> $GITHUB_ENV | |
| echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version)" >> $GITHUB_ENV | |
| - name: Linux ARM setup musl x86_64 | |
| if: matrix.target == 'x86_64-unknown-linux-musl' | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install -y musl-tools | |
| - name: Build binaries | |
| env: | |
| TAG_NAME: ${{ (env.IS_NIGHTLY == 'true' && 'nightly') || needs.prepare.outputs.tag_name }} | |
| SVM_TARGET_PLATFORM: ${{ matrix.svm_target_platform }} | |
| PLATFORM_NAME: ${{ matrix.platform }} | |
| TARGET: ${{ matrix.target }} | |
| OUT_DIR: target/${{ matrix.target }}/${{ env.PROFILE }} | |
| PROFILE: ${{ env.PROFILE }} | |
| shell: bash | |
| run: | | |
| set -eo pipefail | |
| ext="" | |
| [[ "$TARGET" == *windows* ]] && ext=".exe" | |
| flags="--target $TARGET --profile $PROFILE --bins --no-default-features --features aws-kms,cli,asm-keccak" | |
| if [[ "$TARGET" != *msvc* && "$TARGET" != "aarch64-unknown-linux-gnu" ]]; then | |
| flags="$flags --features jemalloc" | |
| fi | |
| if [[ "$TARGET" == "x86_64-unknown-linux-musl" ]]; then | |
| docker run -v $PWD:/opt/revive messense/rust-musl-cross:x86_64-musl /bin/bash -c " | |
| cd /opt/revive | |
| rustup target add x86_64-unknown-linux-musl | |
| cargo build $flags | |
| " | |
| sudo chown -R $(id -u):$(id -g) . | |
| else | |
| cargo build $flags | |
| fi | |
| bins=(cast forge) | |
| for name in "${bins[@]}"; do | |
| bin=$OUT_DIR/$name$ext | |
| echo "" | |
| file "$bin" || true | |
| du -h "$bin" || true | |
| ldd "$bin" || true | |
| $bin --version || true | |
| echo "${name}_bin_path=${bin}" >> $GITHUB_ENV | |
| done | |
| - name: Archive binaries | |
| id: artifacts | |
| env: | |
| PLATFORM_NAME: ${{ matrix.platform }} | |
| OUT_DIR: target/${{ matrix.target }}/${{ env.PROFILE }} | |
| VERSION_NAME: ${{ (env.IS_NIGHTLY == 'true' && 'nightly') || needs.prepare.outputs.tag_name }} | |
| ARCH: ${{ matrix.arch }} | |
| shell: bash | |
| run: | | |
| if [ "$PLATFORM_NAME" == "linux" ]; then | |
| tar -czvf "foundry_${VERSION_NAME}_${PLATFORM_NAME}_${ARCH}.tar.gz" -C $OUT_DIR forge cast | |
| echo "file_name=foundry_${VERSION_NAME}_${PLATFORM_NAME}_${ARCH}.tar.gz" >> $GITHUB_OUTPUT | |
| elif [ "$PLATFORM_NAME" == "darwin" ]; then | |
| # We need to use gtar here otherwise the archive is corrupt. | |
| # See: https://github.com/actions/virtual-environments/issues/2619 | |
| gtar -czvf "foundry_${VERSION_NAME}_${PLATFORM_NAME}_${ARCH}.tar.gz" -C $OUT_DIR forge cast | |
| echo "file_name=foundry_${VERSION_NAME}_${PLATFORM_NAME}_${ARCH}.tar.gz" >> $GITHUB_OUTPUT | |
| else | |
| cd $OUT_DIR | |
| 7z a -tzip "foundry_${VERSION_NAME}_${PLATFORM_NAME}_${ARCH}.zip" forge.exe cast.exe | |
| mv "foundry_${VERSION_NAME}_${PLATFORM_NAME}_${ARCH}.zip" ../../../ | |
| echo "file_name=foundry_${VERSION_NAME}_${PLATFORM_NAME}_${ARCH}.zip" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Build man page | |
| id: man | |
| if: matrix.target == 'x86_64-unknown-linux-gnu' | |
| env: | |
| OUT_DIR: target/${{ matrix.target }}/${{ env.PROFILE }} | |
| VERSION_NAME: ${{ (env.IS_NIGHTLY == 'true' && 'nightly') || needs.prepare.outputs.tag_name }} | |
| shell: bash | |
| run: | | |
| sudo apt-get -y install help2man | |
| help2man -N $OUT_DIR/forge > forge.1 | |
| help2man -N $OUT_DIR/cast > cast.1 | |
| gzip forge.1 | |
| gzip cast.1 | |
| tar -czvf "foundry_man_${VERSION_NAME}.tar.gz" forge.1.gz cast.1.gz | |
| echo "foundry_man=foundry_man_${VERSION_NAME}.tar.gz" >> $GITHUB_OUTPUT | |
| # Creates the release for this specific version | |
| - name: Create release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: ${{ needs.prepare.outputs.release_name }} | |
| tag_name: ${{ needs.prepare.outputs.tag_name }} | |
| prerelease: ${{ env.IS_NIGHTLY == 'true' }} | |
| body: ${{ needs.prepare.outputs.changelog }} | |
| files: | | |
| ${{ steps.artifacts.outputs.file_name }} | |
| ${{ steps.man.outputs.foundry_man }} | |
| - name: Binaries attestation | |
| uses: actions/attest-build-provenance@v2 | |
| with: | |
| subject-path: | | |
| ${{ env.cast_bin_path }} | |
| ${{ env.forge_bin_path }} | |
| # If this is a nightly release, it also updates the release | |
| # tagged `nightly` for compatibility with `foundryup` | |
| - name: Update nightly release | |
| if: ${{ env.IS_NIGHTLY == 'true' }} | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: "Nightly" | |
| tag_name: "nightly" | |
| prerelease: true | |
| body: ${{ needs.prepare.outputs.changelog }} | |
| files: | | |
| ${{ steps.artifacts.outputs.file_name }} | |
| ${{ steps.man.outputs.foundry_man }} | |
| - name: Test Foundryup Installation | |
| shell: bash | |
| run: | | |
| uname -s | |
| uname -m | |
| curl -L https://raw.githubusercontent.com/soul022/foundry-revive-testing/refs/heads/master/foundryup/install | bash | |
| # Explicitly debug directories immediately after installation | |
| echo "Checking ~/.foundry directory:" | |
| ls -alh ~/.foundry || echo "~/.foundry not created!" | |
| echo "Checking ~/.foundry/bin directory:" | |
| ls -alh ~/.foundry/bin || echo "~/.foundry/bin not created!" | |
| echo "Attempting to find 'foundryup' binary anywhere in home directory:" | |
| FOUND_PATH=$(find ~ -type f -name "foundryup" | head -n 1) | |
| if [[ -z "$FOUND_PATH" ]]; then | |
| echo "foundryup binary NOT found anywhere! Check installer script." | |
| exit 1 | |
| else | |
| echo "foundryup found at: $FOUND_PATH" | |
| fi | |
| # Ensure the binary is executable | |
| chmod +x "$FOUND_PATH" | |
| # Add the discovered path explicitly to GITHUB_PATH for subsequent steps | |
| BIN_DIR=$(dirname "$FOUND_PATH") | |
| echo "$BIN_DIR" >> $GITHUB_PATH | |
| echo "Path $BIN_DIR appended to GITHUB_PATH." | |
| # Immediately verify foundryup and Foundry binaries | |
| echo "Verifying 'foundryup' command availability:" | |
| foundryup --install "${VERSION_NAME}" || "$FOUND_PATH" --install "${VERSION_NAME}" | |
| # Check Forge and Cast | |
| forge --version || echo "forge command not available after install" | |
| cast --version || echo "cast command not available after install" | |
| cleanup: | |
| name: Release cleanup | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| needs: release | |
| if: always() | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Moves the `nightly` tag to `HEAD` | |
| - name: Move nightly tag | |
| if: ${{ env.IS_NIGHTLY == 'true' }} | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const moveTag = require('./.github/scripts/move-tag.js') | |
| await moveTag({ github, context }, 'nightly') | |
| - name: Delete old nightlies | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const prunePrereleases = require('./.github/scripts/prune-prereleases.js') | |
| await prunePrereleases({github, context}) | |
| # If any of the jobs fail, this will create a high-priority issue to signal so. | |
| issue: | |
| name: Open an issue | |
| runs-on: ubuntu-latest | |
| needs: [ prepare, release, cleanup ] | |
| if: failure() | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: JasonEtco/create-an-issue@v2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| WORKFLOW_URL: | | |
| ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
| with: | |
| update_existing: true | |
| filename: .github/RELEASE_FAILURE_ISSUE_TEMPLATE.md |