Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / Run Dynamic Number of JobsInvalid workflow file
|
||
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/ |