mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 21:14:01 +08:00
* cache * test ns * try this * try * try now? * bp * bp agian * fix * remove * test * try * fix * fix * regen cache * fix
38 lines
955 B
YAML
38 lines
955 B
YAML
name: 'openpilot env setup, with retry on failure'
|
|
|
|
inputs:
|
|
docker_hub_pat:
|
|
description: 'Auth token for Docker Hub, required for BuildJet jobs'
|
|
required: false
|
|
default: ''
|
|
sleep_time:
|
|
description: 'Time to sleep between retries'
|
|
required: false
|
|
default: 30
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- id: setup1
|
|
uses: ./.github/workflows/setup
|
|
continue-on-error: true
|
|
with:
|
|
is_retried: true
|
|
- if: steps.setup1.outcome == 'failure'
|
|
shell: bash
|
|
run: sleep ${{ inputs.sleep_time }}
|
|
- id: setup2
|
|
if: steps.setup1.outcome == 'failure'
|
|
uses: ./.github/workflows/setup
|
|
continue-on-error: true
|
|
with:
|
|
is_retried: true
|
|
- if: steps.setup2.outcome == 'failure'
|
|
shell: bash
|
|
run: sleep ${{ inputs.sleep_time }}
|
|
- id: setup3
|
|
if: steps.setup2.outcome == 'failure'
|
|
uses: ./.github/workflows/setup
|
|
with:
|
|
is_retried: true
|