Run short sleepy matrix on update-strategy-tests-200847 #493
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: ARC Long Running Jobs Matrix | |
run-name: Run short sleepy matrix on ${{ inputs.arc_name }} | |
on: | |
workflow_dispatch: | |
inputs: | |
arc_name: | |
description: 'Target ARC name used for `runs-on` in job' | |
required: true | |
delay: | |
description: "How long to sleep in seconds" | |
required: true | |
default: "120" | |
jobs: | |
arc-runner-job: | |
strategy: | |
fail-fast: false | |
matrix: | |
job: [1, 2, 3] | |
runs-on: ${{ inputs.arc_name }} | |
steps: | |
- name: sleep | |
run: | | |
echo "Hello from: "${{ matrix.version }} | |
sleep ${{ inputs.delay }} |