Skip to content

Commit

Permalink
type fix?
Browse files Browse the repository at this point in the history
Signed-off-by: AtomicFS <vojtech.vesely@9elements.com>
  • Loading branch information
AtomicFS committed Sep 24, 2024
1 parent f150e1f commit 49154c4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,19 +100,19 @@ jobs:
run: pip install -r ./.dagger-ci/daggerci/requirements.txt

- name: Define default timeout
run: echo "DAGGER_TIMEOUT=15" >> "${GITHUB_ENV}"
run: echo DAGGER_TIMEOUT=15 >> "${GITHUB_ENV}"
- name: Define timeout if coreboot container
if: ${{ startsWith(matrix.dockerfile, 'coreboot_') }}
run: echo "DAGGER_TIMEOUT=120" >> "${GITHUB_ENV}"
run: echo DAGGER_TIMEOUT=120 >> "${GITHUB_ENV}"
- name: Define timeout if edk2 container
if: ${{ startsWith(matrix.dockerfile, 'edk2-stable') || startsWith(matrix.dockerfile, 'udk20') }}
run: echo "DAGGER_TIMEOUT=15" >> "${GITHUB_ENV}"
run: echo DAGGER_TIMEOUT=15 >> "${GITHUB_ENV}"
- name: Define timeout if linux container
if: ${{ startsWith(matrix.dockerfile, 'linux_') }}
run: echo "DAGGER_TIMEOUT=15" >> "${GITHUB_ENV}"
run: echo DAGGER_TIMEOUT=15 >> "${GITHUB_ENV}"
- name: Define timeout if uroot container
if: ${{ startsWith(matrix.dockerfile, 'uroot_') }}
run: echo "DAGGER_TIMEOUT=10" >> "${GITHUB_ENV}"
run: echo DAGGER_TIMEOUT=10 >> "${GITHUB_ENV}"

- name: Run dagger pipeline
timeout-minutes: ${{ env.DAGGER_TIMEOUT }}
Expand Down

0 comments on commit 49154c4

Please sign in to comment.