set four hour timeout for risc build #127
Workflow file for this run
This file contains 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: Build Ubuntu 22.04 RISC Image | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'ubuntu-22.04-risc/*' | ||
- '.github/workflows/build-ubuntu-22.04-risc.yml' | ||
pull_request: | ||
paths: | ||
- 'ubuntu-22.04-risc/*' | ||
- '.github/workflows/build-ubuntu-22.04-risc.yml' | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '30 12 * * 5' | ||
concurrency: | ||
# SHA is added to the end if on `main` to let all main workflows run | ||
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == 'refs/heads/main' && github.sha || '' }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
uses: Chia-Network/actions/.github/workflows/docker-build.yaml@main | ||
timeout-minutes: 240 | ||
Check failure on line 26 in .github/workflows/build-ubuntu-22.04-risc.yml GitHub Actions / Build Ubuntu 22.04 RISC ImageInvalid workflow file
|
||
with: | ||
alternate-latest-mode: true | ||
runs-on: k8s-public | ||
timeout-minutes: 1440 | ||
docker-context: "./ubuntu-22.04-risc" | ||
dockerfile: "./ubuntu-22.04-risc/Dockerfile" | ||
dockerhub_imagename: "chianetwork/ubuntu-22.04-risc-builder" | ||
docker-platforms: linux/riscv64 | ||
image_subpath: "ubuntu-22.04-risc-builder" | ||
secrets: | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
DOCKERHUB_PAT: ${{ secrets.DOCKERHUB_PAT }} |