Skip to content

Commit

Permalink
full matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Water-Melon committed Jul 5, 2024
1 parent a3e9a1e commit 67bce6d
Show file tree
Hide file tree
Showing 3 changed files with 125 additions and 5 deletions.
126 changes: 123 additions & 3 deletions .github/matrix-commitly.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,144 @@
# please see matrix-full.yml for meaning of each field
build-packages:
# label: used to distinguish artifacts for later use
# image: docker image name if the build is running in side a container
# package: package type
# package-type: the nfpm packaging target, //:kong_{package} target; only used when package is rpm
# bazel-args: additional bazel build flags
# check-manifest-suite: the check manifest suite as defined in scripts/explain_manifest/config.py

# Ubuntu
- label: ubuntu-20.04
image: ubuntu:20.04
package: deb
check-manifest-suite: ubuntu-20.04-amd64
- label: ubuntu-22.04
os: ubuntu-22.04
package: deb
check-manifest-suite: ubuntu-22.04-amd64

# Debian
- label: debian-11
image: debian:11
package: deb
check-manifest-suite: debian-11-amd64

# Alpine
- label: alpine
os: vars.RELEASE_RUNS_ON
package: apk
bazel-args: --platforms=//:alpine-crossbuild-x86_64
check-manifest-suite: alpine-amd64

# RHEL
- label: rhel-8
image: rockylinux:8
package: rpm
package-type: el8
check-manifest-suite: el8-amd64

# Amazon Linux
- label: amazonlinux-2023
image: amazonlinux:2023
package: rpm
package-type: aws2023
check-manifest-suite: amazonlinux-2023-amd64

build-images:
# Only build images for the latest version of each major release.

# label: used as compose docker image label ${github.sha}-${label}
# base-image: docker image to use as base
# package: package type
# artifact-from: label of build-packages to use
# artifact-from-alt: another label of build-packages to use for downloading package (to build multi-arch image)
# docker-platforms: comma separated list of docker buildx platforms to build for

# Ubuntu
- label: ubuntu
base-image: ubuntu:22.04
package: deb
artifact-from: ubuntu-22.04
docker-platforms: linux/amd64

# Alpine
- label: alpine
base-image: alpine:3.16
package: apk
artifact-from: alpine

# Debian
- label: debian
base-image: debian:11-slim
package: deb
artifact-from: debian-11

# RHEL
- label: rhel
base-image: registry.access.redhat.com/ubi8
package: rpm
package-distro: el8
artifact-from: rhel-8

smoke-tests:
- label: ubuntu
- label: debian
- label: rhel
- label: alpine

scan-vulnerabilities:
- label: ubuntu
- label: debian
- label: rhel
- label: alpine

release-packages:
# Ubuntu
- label: ubuntu-20.04
package: deb
artifact-from: ubuntu-20.04
artifact-version: 20.04
artifact-type: ubuntu
artifact: kong.amd64.deb
- label: ubuntu-22.04
package: deb
artifact-from: ubuntu-22.04
artifact-version: 22.04
artifact-type: ubuntu
artifact: kong.amd64.deb

# Debian
- label: debian-11
package: deb
artifact-from: debian-11
artifact-version: 11
artifact-type: debian
artifact: kong.amd64.deb

# RHEL
- label: rhel-8
package: rpm
artifact-from: rhel-8
artifact-version: 8
artifact-type: rhel
artifact: kong.el8.amd64.rpm

# Amazon Linux
- label: amazonlinux-2023
package: rpm
artifact-from: amazonlinux-2023
artifact-version: 2023
artifact-type: amazonlinux
artifact: kong.aws2023.amd64.rpm

# Alpine
- label: alpine
package: apk
artifact-from: alpine
artifact-type: alpine
artifact: kong.amd64.apk.tar.gz

release-images:
- label: alpine
package: apk
- label: ubuntu
package: deb
- label: debian
- label: rhel
2 changes: 1 addition & 1 deletion .github/matrix-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ build-images:
artifact-from: debian-11

# RHEL
- label: rhel8
- label: rhel
base-image: registry.access.redhat.com/ubi8
package: rpm
package-distro: el8
Expand Down
2 changes: 1 addition & 1 deletion build/dockerfiles/rpm.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ LABEL name="Kong" \
# RedHat required LICENSE file approved path
COPY LICENSE /licenses/

ARG PACKAGE_DISTRO=el7
ARG PACKAGE_DISTRO=el8

ARG KONG_PREFIX=/usr/local/kong
ENV KONG_PREFIX $KONG_PREFIX
Expand Down

0 comments on commit 67bce6d

Please sign in to comment.