Skip to content

Commit

Permalink
Fix names
Browse files Browse the repository at this point in the history
Signed-off-by: Itxaka <[email protected]>
  • Loading branch information
Itxaka committed Feb 3, 2025
1 parent 9a8221f commit 3bc2973
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ concurrency:

jobs:
testing_build_matrix:
name: ${{ matrix.platform }} - ${{ matrix.base_image }} - ${{ matrix.variant }} - ${{ matrix.kubernetes_provider }}
runs-on: ${{ matrix.platform == 'linux/arm64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
name: ${{ matrix.platform }} - ${{ matrix.base_image }}${{ matrix.variant == 'standard' && ' - ' || '' }}${{ matrix.variant == 'standard' && matrix.kubernetes_provider || '' }}
runs-on: ${{ matrix.platform == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
strategy:
matrix:
variant: [ "core" ]
kubernetes_provider: [ "k3s"]
platform: [ "linux/amd64", "linux/arm64" ]
platform: [ "amd64", "arm64" ]
base_image: [ "ubuntu:20.04", "ubuntu:24.04", "debian:12", "alpine:3.19", "alpine:3.21", "opensuse/leap:15.6", "opensuse/tumbleweed", "rockylinux:9" ]
include:
- platform: "linux/amd64"
- platform: "amd64"
base_image: "ubuntu:22.04"
variant: "standard"
kubernetes_provider: "k3s"
- platform: "linux/amd64"
- platform: "amd64"
base_image: "ubuntu:22.04"
variant: "standard"
kubernetes_provider: "k0s"
Expand All @@ -42,7 +42,7 @@ jobs:
with:
context: .
file: Dockerfile.test
platforms: ${{ matrix.platform }}
platforms: linux/${{ matrix.platform }}
push: false
tags: kairos-${{ matrix.base_image }}
build-args: |
Expand Down

0 comments on commit 3bc2973

Please sign in to comment.