Skip to content

Commit

Permalink
chore(arch): drop musl based OS's
Browse files Browse the repository at this point in the history
  • Loading branch information
hutchic committed May 8, 2024
1 parent cd18af1 commit 72b5b0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
architecture: [x86_64, aarch64]
ostype: [linux-gnu, linux-musl]
ostype: [linux-gnu]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -146,8 +146,7 @@ jobs:
strategy:
matrix:
architecture: [{cpu: x86_64, docker: amd64}, {cpu: aarch64, docker: arm64}]
os: [{os: ubuntu, version: rolling}, {os: ubuntu, version: 16.04}, {os: debian, version: testing}, {os: debian, version: 10}, {os: rhel, version: 8},
{os: alpine, version: 3}]
os: [{os: ubuntu, version: rolling}, {os: ubuntu, version: 16.04}, {os: debian, version: testing}, {os: debian, version: 10}, {os: rhel, version: 8}]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -215,8 +214,7 @@ jobs:
if: ${{ needs.release.outputs.published == 'true' }}
strategy:
matrix:
os: [{os: ubuntu, version: rolling}, {os: ubuntu, version: 16.04}, {os: debian, version: testing}, {os: debian, version: 10}, {os: rhel, version: 8},
{os: alpine, version: 3}]
os: [{os: ubuntu, version: rolling}, {os: ubuntu, version: 16.04}, {os: debian, version: testing}, {os: debian, version: 10}, {os: rhel, version: 8}]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 0 additions & 2 deletions Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ ARG OPERATING_SYSTEM=ubuntu
ARG OPERATING_SYSTEM_VERSION="22.04"

# List out all image permutations to trick dependabot
FROM --platform=linux/amd64 ghcr.io/hutchic-org/kong-runtime:1.0.8-x86_64-linux-musl as x86_64-linux-musl
FROM --platform=linux/amd64 ghcr.io/hutchic-org/kong-runtime:1.0.8-x86_64-linux-gnu as x86_64-linux-gnu
FROM --platform=linux/arm64 ghcr.io/hutchic-org/kong-runtime:1.0.8-aarch64-linux-musl as aarch64-linux-musl
FROM --platform=linux/arm64 ghcr.io/hutchic-org/kong-runtime:1.0.8-aarch64-linux-gnu as aarch64-linux-gnu


Expand Down

0 comments on commit 72b5b0a

Please sign in to comment.