Butterflynet checks #19
Workflow file for this run
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: Butterflynet checks | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| env: | |
| CI: 1 | |
| CACHE_TIMEOUT_MINUTES: 5 | |
| SCRIPT_TIMEOUT_MINUTES: 30 | |
| AWS_ACCESS_KEY_ID: "${{ secrets.AWS_ACCESS_KEY_ID }}" | |
| AWS_SECRET_ACCESS_KEY: "${{ secrets.AWS_SECRET_ACCESS_KEY }}" | |
| RUSTC_WRAPPER: sccache | |
| CC: sccache clang | |
| CXX: sccache clang++ | |
| FIL_PROOFS_PARAMETER_CACHE: /var/tmp/filecoin-proof-parameters | |
| SHELL_IMAGE: busybox | |
| jobs: | |
| butterflynet-checks: | |
| name: Butterflynet checks | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v6 | |
| - name: Setup sccache | |
| uses: mozilla-actions/sccache-action@v0.0.9 | |
| timeout-minutes: ${{ fromJSON(env.CACHE_TIMEOUT_MINUTES) }} | |
| continue-on-error: true | |
| - uses: jdx/mise-action@v4 | |
| - name: Build and install Forest binaries | |
| env: | |
| # To minimize compile times: https://nnethercote.github.io/perf-book/build-configuration.html#minimizing-compile-times | |
| RUSTFLAGS: "-C linker=clang -C link-arg=-fuse-ld=lld" | |
| run: mise run install --slim quick | |
| - name: Run butterflynet checks | |
| run: ./scripts/tests/butterflynet_check.sh | |
| timeout-minutes: ${{ fromJSON(env.SCRIPT_TIMEOUT_MINUTES) }} |