chore: Release ic-asset 0.26 #9585
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: Check dfx asset preparation | |
| # The cargo build steps in other workflows often benefit from caching of the results of this process, | |
| # so this workflow runs it separately. | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| # When getting Rust dependencies, retry on network error: | |
| CARGO_NET_RETRY: 10 | |
| # Use the local .curlrc | |
| CURL_HOME: . | |
| # Disable DFX telemetry | |
| DFX_TELEMETRY: 'off' | |
| jobs: | |
| prepare: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest, ubuntu-24.04-arm, macos-14, macos-14-large ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| !target/*/build/dfx-*/out/dfx-assets | |
| key: ${{ matrix.os }}-${{ runner.arch }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Run build script | |
| run: | | |
| cargo check | |
| aggregate: | |
| name: prepare-dfx-assets:required | |
| if: ${{ always() }} | |
| needs: prepare | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: check step result directly | |
| if: ${{ needs.prepare.result != 'success' }} | |
| run: exit 1 |