500 Parallel Jobs Test #2
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: 500 Parallel Jobs Test | |
on: | |
workflow_dispatch: | |
jobs: | |
generate_job_batches: | |
runs-on: ubuntu-latest | |
steps: | |
- id: set-matrix | |
run: | | |
batch1=$(seq 1 250 | jq -R . | jq -sc .) | |
batch2=$(seq 251 500 | jq -R . | jq -sc .) | |
echo "batch1=$batch1" >> $GITHUB_OUTPUT | |
echo "batch2=$batch2" >> $GITHUB_OUTPUT | |
outputs: | |
batch1: ${{ steps.set-matrix.outputs.batch1 }} | |
batch2: ${{ steps.set-matrix.outputs.batch2 }} | |
run_jobs_batch1: | |
needs: generate_job_batches | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
job: ${{ fromJson(needs.generate_job_batches.outputs.batch1) }} | |
fail-fast: false | |
steps: | |
- name: Run job ${{ matrix.job }} | |
run: | | |
echo "Starting job ${{ matrix.job }}" | |
sleep 600 | |
echo "Job ${{ matrix.job }} completed" | |
run_jobs_batch2: | |
needs: generate_job_batches | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
job: ${{ fromJson(needs.generate_job_batches.outputs.batch2) }} | |
fail-fast: false | |
steps: | |
- name: Run job ${{ matrix.job }} | |
run: | | |
echo "Starting job ${{ matrix.job }}" | |
sleep 60 | |
echo "Job ${{ matrix.job }} completed" | |
summary: | |
needs: [run_jobs_batch1, run_jobs_batch2] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Summarize | |
run: echo "All 500 jobs completed" |