Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
platforms: linux/amd64,linux/arm64,linux/arm/v7
- base: core22
base_os: jammy
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/riscv64
- base: core24
base_os: noble
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/riscv64
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Generate Build Matrix
id: matrix
run: |
PLATFORMS=(linux/amd64 linux/arm/v7 linux/arm64) # linux/s390x)
PLATFORMS=(linux/amd64 linux/arm/v7 linux/arm64 linux/riscv64) # linux/s390x)
BASES=(core core18 core20 core22 core24)

BUILD_MATRIX=
Expand Down Expand Up @@ -52,6 +52,8 @@ jobs:
esac

for platform in ${PLATFORMS[@]}; do
# only build risv64 for core24 and core22
[ "$platform" = "linux/riscv64" ] && [ "$base" != "core24" ] && [ "$base" != "core22" ] && continue
[ "$platform" = "linux/386" ] && [ "$base" != "core" ] && [ "$base" != "core18" ] && continue
[ "$platform" = "linux/s390" ] && ( [ "$base" = "core" ] || [ "$base" = "core18" ] ) && continue

Expand Down
Loading