Skip to content

🐿️ ARC-2 container job scaling test #7

🐿️ ARC-2 container job scaling test

🐿️ ARC-2 container job scaling test #7

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 }}"