Testing available runner images for Free/OpenSource Plan.

This commit is contained in:
Patrick Lehmann
2025-08-21 18:57:18 +02:00
parent 0f66b32418
commit b4d45277d1
3 changed files with 46 additions and 9 deletions

View File

@@ -0,0 +1,37 @@
name: Testing available GitHub Action Images
on:
push:
workflow_dispatch:
jobs:
RunnerTest:
name: ${{ matrix.icon }} ${{ matrix.name }}
runs-on: ${{ matrix.image }}
strategy:
fail-fast: false
matrix:
include:
- {icon: '🐧', name: 'Ubuntu 22.04 (x86-64)', image: 'ubuntu-22.04', shell: 'bash'}
- {icon: '🐧', name: 'Ubuntu 24.04 (x86-64)', image: 'ubuntu-24.04', shell: 'bash'} # latest
- {icon: '🍎', name: 'macOS-13 (x86-64)', image: 'macos-13', shell: 'bash'}
- {icon: '🍎', name: 'macOS-14 (x86-64)', image: 'macos-14-large', shell: 'bash'} # not in free plan
- {icon: '🍎', name: 'macOS-15 (x86-64)', image: 'macos-15-large', shell: 'bash'} # not in free plan
- {icon: '🍏', name: 'macOS-13 (aarch64)', image: 'macos-13-xlarge', shell: 'bash'}
- {icon: '🍏', name: 'macOS-14 (aarch64)', image: 'macos-14', shell: 'bash'} # latest
- {icon: '🍏', name: 'macOS-15 (aarch64)', image: 'macos-15', shell: 'bash'}
- {icon: '🪟', name: 'Windows Server 2022', image: 'windows-2022', shell: 'bash'}
- {icon: '🪟', name: 'Windows Server 2025', image: 'windows-2022', shell: 'bash'} # latest
# Third party images by ARM for aarch64
- {icon: '🐧', name: 'Ubuntu 22.04 (aarch64)', image: 'ubuntu-22.04-arm', shell: 'bash'}
- {icon: '🐧', name: 'Ubuntu 24.04 (aarch64)', image: 'ubuntu-24.04-arm', shell: 'bash'}
- {icon: '🪟', name: 'Windows 11 (arch64)', image: 'windows-11-arm', shell: 'bash'}
defaults:
run:
shell: ${{ matrix.shell }}
steps:
- name: 'uname -a'
run: uname -a

View File

@@ -42,7 +42,7 @@ jobs:
retention-days: 1 retention-days: 1
NightlyPage: NightlyPage:
uses: ./.github/workflows/NightlyRelease.yml uses: ./.github/workflows/PublishReleaseNotes.yml
needs: needs:
- Build - Build
permissions: permissions:
@@ -55,8 +55,8 @@ jobs:
version=4.2.0 version=4.2.0
tool=myTool tool=myTool
prog=program prog=program
nightly_title: "Nightly Test Release" title: "Nightly Test Release"
nightly_description: | description: |
This *nightly* release contains all latest and important artifacts created by %tool%'s CI pipeline. This *nightly* release contains all latest and important artifacts created by %tool%'s CI pipeline.
# %tool% %version% # %tool% %version%
@@ -79,7 +79,7 @@ jobs:
secrets: inherit secrets: inherit
NightlyPageWithInventory: NightlyPageWithInventory:
uses: ./.github/workflows/NightlyRelease.yml uses: ./.github/workflows/PublishReleaseNotes.yml
needs: needs:
- Build - Build
permissions: permissions:
@@ -91,15 +91,15 @@ jobs:
version=4.2.0 version=4.2.0
tool=myTool tool=myTool
prog=program prog=program
nightly_name: inventory tag: inventory
nightly_title: "Nightly Test Release with Inventory" title: "Nightly Test Release with Inventory"
nightly_description: | description: |
This *nightly* release contains all latest and important artifacts created by %tool%'s CI pipeline. This *nightly* release contains all latest and important artifacts created by %tool%'s CI pipeline.
# %tool% %version% # %tool% %version%
* %prog% * %prog%
* iventory.json * inventory.json
inventory-json: "inventory.json" inventory-json: "inventory.json"
inventory-version: 4.2.5 inventory-version: 4.2.5
inventory-categories: "kind1,kind2" inventory-categories: "kind1,kind2"

View File

@@ -19,7 +19,7 @@
# # # #
# SPDX-License-Identifier: Apache-2.0 # # SPDX-License-Identifier: Apache-2.0 #
# ==================================================================================================================== # # ==================================================================================================================== #
name: Test Releaser name: Verification Pipeline for Releaser
on: on:
push: push: