Skip to content

Commit

Permalink
[ci-on-tags.yml] Try to fix matrix syntax (#209)
Browse files Browse the repository at this point in the history
* [ci-on-tags.yml] Try to fix `matrix` syntax

* [ci-on-tags.yml] Try to fix `matrix` syntax

* [ci-on-tags.yml] Fix `matrix` syntax
  • Loading branch information
Olf0 authored Sep 14, 2023
1 parent 5167657 commit 9340114
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci-on-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,15 @@ jobs:
# One job for the latest Docker images used and one for the oldest ones.
# Trying to download three multi-GB, layered docker images in a single job may
# result in "docker: write /var/lib/docker/tmp/GetImageBlobXYZ: no space left on device."
build-on-${{ env.RELEASE }}:
build-on-SFOS-SDK:
strategy:
matrix:
release: [ ${{ env.LATEST }}, ${{ env.OLDEST }} ]
# release: [ ] # Unable to use variables for defining the matrix array
include:
- release: ${{ env.OLDEST }}
- release: ${{ env.LATEST }}
# Cannot use a two matrix dimensions, because the ARCH-specific builds
# must be carried out in a single job to allow for Docker image reuse.
env:
RELEASE: ${{ matrix.release }}
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 9340114

Please sign in to comment.