|
|
@ -1,6 +1,10 @@ |
|
|
|
name: 'openpilot env setup, with retry on failure' |
|
|
|
name: 'openpilot env setup, with retry on failure' |
|
|
|
|
|
|
|
|
|
|
|
inputs: |
|
|
|
inputs: |
|
|
|
|
|
|
|
docker_hub_pat: |
|
|
|
|
|
|
|
description: 'Auth token for Docker Hub, required for BuildJet jobs' |
|
|
|
|
|
|
|
required: false |
|
|
|
|
|
|
|
default: '' |
|
|
|
git_lfs: |
|
|
|
git_lfs: |
|
|
|
description: 'Whether or not to pull the git lfs' |
|
|
|
description: 'Whether or not to pull the git lfs' |
|
|
|
required: false |
|
|
|
required: false |
|
|
@ -21,6 +25,7 @@ runs: |
|
|
|
uses: ./.github/workflows/setup |
|
|
|
uses: ./.github/workflows/setup |
|
|
|
continue-on-error: true |
|
|
|
continue-on-error: true |
|
|
|
with: |
|
|
|
with: |
|
|
|
|
|
|
|
docker_hub_pat: ${{ inputs.docker_hub_pat }} |
|
|
|
git_lfs: ${{ inputs.git_lfs }} |
|
|
|
git_lfs: ${{ inputs.git_lfs }} |
|
|
|
cache_key_prefix: ${{ inputs.cache_key_prefix }} |
|
|
|
cache_key_prefix: ${{ inputs.cache_key_prefix }} |
|
|
|
is_retried: true |
|
|
|
is_retried: true |
|
|
@ -32,6 +37,7 @@ runs: |
|
|
|
uses: ./.github/workflows/setup |
|
|
|
uses: ./.github/workflows/setup |
|
|
|
continue-on-error: true |
|
|
|
continue-on-error: true |
|
|
|
with: |
|
|
|
with: |
|
|
|
|
|
|
|
docker_hub_pat: ${{ inputs.docker_hub_pat }} |
|
|
|
git_lfs: ${{ inputs.git_lfs }} |
|
|
|
git_lfs: ${{ inputs.git_lfs }} |
|
|
|
cache_key_prefix: ${{ inputs.cache_key_prefix }} |
|
|
|
cache_key_prefix: ${{ inputs.cache_key_prefix }} |
|
|
|
is_retried: true |
|
|
|
is_retried: true |
|
|
@ -42,6 +48,7 @@ runs: |
|
|
|
if: steps.setup2.outcome == 'failure' |
|
|
|
if: steps.setup2.outcome == 'failure' |
|
|
|
uses: ./.github/workflows/setup |
|
|
|
uses: ./.github/workflows/setup |
|
|
|
with: |
|
|
|
with: |
|
|
|
|
|
|
|
docker_hub_pat: ${{ inputs.docker_hub_pat }} |
|
|
|
git_lfs: ${{ inputs.git_lfs }} |
|
|
|
git_lfs: ${{ inputs.git_lfs }} |
|
|
|
cache_key_prefix: ${{ inputs.cache_key_prefix }} |
|
|
|
cache_key_prefix: ${{ inputs.cache_key_prefix }} |
|
|
|
is_retried: true |
|
|
|
is_retried: true |
|
|
|