Skip to content

Workflow file for this run

name: Run Dynamic Number of Jobs
on:
push:
branches: [ matrix ]
workflow_dispatch:
jobs:
generate-job-strategy-matrix:
runs-on: ubuntu-20.04
outputs:
job-strategy-matrix: ${{ steps.generate.outputs.job-strategy-matrix }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: 'recursive'
- name: Checkout CI scripts
uses: actions/checkout@v3
with:
repository: ctu-mrs/ci_scripts
ref: master
path: .ci_scripts
token: ${{ secrets.PUSH_TOKEN }}
- id: generate
run: |
JOB_STRATEGY_MATRIX=$(./.ci/get_build_matrix.sh unstable)
echo "::set-output name=job-strategy-matrix::$JOB_STRATEGY_MATRIX"
job:
needs: generate-job-strategy-matrix
runs-on: ubuntu-20.04
timeout-minutes: 360 # 6 hour timeout
strategy:
matrix:
job: ${{ fromJson(needs.generate-job-strategy-matrix.outputs.job-strategy-matrix) }}
max-parallel: 1 # Run jobs serially
steps:
- name: Load artifacts
uses: actions/download-artifact@v3
with:
name: debs
path: /tmp/
- id: Executing work

Check failure on line 46 in .github/workflows/example.yml

View workflow run for this annotation

GitHub Actions / Run Dynamic Number of Jobs

Invalid workflow file

The workflow is not valid. .github/workflows/example.yml (Line: 46, Col: 13): The identifier 'Executing work' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
run: |
echo "starting with:"
echo "cat /tmp/debs/test.txt"
echo ""
echo "This is job named ${{ matrix.job }} > /tmp/debs/test.txt"
- name: Save artifacts
uses: actions/upload-artifact@v3
with:
name: debs
path: /tmp/debs/