🐿️ ARC-2 container job scaling test #7
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: 🐿️ ARC-2 container job scaling test | |
on: | |
workflow_dispatch: | |
inputs: | |
target-scale-set: | |
description: "Which scale set to test?" | |
type: string | |
required: true | |
jobs: | |
hello-world: | |
runs-on: ${{ github.event.inputs.target-scale-set }} | |
strategy: | |
matrix: | |
number: [1, 2] | |
letter: [a, b] | |
base-image: | |
["alpine:3", "cgr.dev/chainguard/wolfi-base:latest", "ubuntu:latest"] | |
container: ${{ matrix.base-image }} | |
steps: | |
- name: Hello world | |
run: | | |
echo "Hello world - I'm running on ${{ runner.os }}!" | |
echo "Number: ${{ matrix.number }}" | |
echo "Letter: ${{ matrix.letter }}" | |
echo "Base image: ${{ matrix.base-image }}" |