Add retry logic for Hermit initialization #12347
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: Packaging | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - "[0-9]+.[0-9]+" | |
| types: [opened, synchronize, reopened] | |
| env: | |
| DEV: true | |
| SNAPSHOT: true | |
| PLATFORMS: linux/amd64 | |
| GOPATH: /home/runner/go | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| package_beat: | |
| name: Package Cloudbeat | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 40 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| types: [tar.gz, docker] | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - name: Hermit Environment | |
| uses: ./.github/actions/hermit | |
| with: | |
| init-tools: "true" | |
| free-disk: "true" | |
| - name: Packaging | |
| run: | | |
| mage -v package | |
| env: | |
| TYPES: ${{ matrix.types }} |