Skip to content

Dummy CI

Dummy CI #7

Workflow file for this run

name: Dummy CI
on:
workflow_dispatch:
inputs:
runner:
type: choice
description: Runner to use
options:
- equinix-2cpu-8gb
- equinix-8cpu-32gb
- oracle-aarch64-2cpu-8gb
- oracle-aarch64-4cpu-16gb
wait:
type: number
description: Waiting time for each job
default: 120
defaults:
run:
shell: bash
jobs:
job-1:
runs-on: ${{ inputs.runner }}
strategy:
matrix:
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
steps:
- run: sleep ${{ inputs.wait }}
job-2:
runs-on: ${{ inputs.runner }}
strategy:
matrix:
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
steps:
- run: sleep ${{ inputs.wait }}