From 07230ead9107c4dbe58c3a2e5c86044a97684c65 Mon Sep 17 00:00:00 2001 From: tuunit Date: Wed, 2 Oct 2024 15:36:36 +0200 Subject: [PATCH] fix(ci): testing full release cycle before release branches can be merged --- .github/workflows/ci.yaml | 14 ++++++++++++++ CHANGELOG.md | 1 + Makefile | 2 -- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cf51ef53..d0f57489 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,9 +41,16 @@ jobs: make lint - name: Build + if: (!startsWith(github.head_ref, 'release')) run: | make build + # For release testing + - name: Build All + if: github.base_ref == 'master' && startsWith(github.head_ref, 'release') + run: | + make release + - name: Test env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} @@ -64,5 +71,12 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Docker Build + if: (!startsWith(github.head_ref, 'release')) run: | make docker + + # For release testing + - name: Docker Build All + if: github.base_ref == 'master' && startsWith(github.head_ref, 'release') + run: | + make docker-all diff --git a/CHANGELOG.md b/CHANGELOG.md index 7488ff47..eba447f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ - 📖 Improved docs ## Important Notes +- Remove support of arm/v6 for distroless image runtime. Alpine tags still support arm/v6. ## Breaking Changes diff --git a/Makefile b/Makefile index 52dd27c1..37ae1af9 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,6 @@ docker-all: docker $(DOCKER_BUILDX) --platform linux/amd64 -t $(REGISTRY)/$(REPOSITORY):latest-amd64 -t $(REGISTRY)/$(REPOSITORY):${VERSION}-amd64 . $(DOCKER_BUILDX) --platform linux/arm64 -t $(REGISTRY)/$(REPOSITORY):latest-arm64 -t $(REGISTRY)/$(REPOSITORY):${VERSION}-arm64 . $(DOCKER_BUILDX) --platform linux/ppc64le -t $(REGISTRY)/$(REPOSITORY):latest-ppc64le -t $(REGISTRY)/$(REPOSITORY):${VERSION}-ppc64le . - $(DOCKER_BUILDX) --platform linux/arm/v6 -t $(REGISTRY)/$(REPOSITORY):latest-armv6 -t $(REGISTRY)/$(REPOSITORY):${VERSION}-armv6 . $(DOCKER_BUILDX) --platform linux/arm/v7 -t $(REGISTRY)/$(REPOSITORY):latest-armv7 -t $(REGISTRY)/$(REPOSITORY):${VERSION}-armv7 . $(DOCKER_BUILDX) --platform linux/s390x -t $(REGISTRY)/$(REPOSITORY):latest-s390x -t $(REGISTRY)/$(REPOSITORY):${VERSION}-s390x . @@ -80,7 +79,6 @@ docker-push-all: docker-push $(DOCKER_BUILDX_PUSH) --platform linux/amd64 -t $(REGISTRY)/$(REPOSITORY):latest-amd64 -t $(REGISTRY)/$(REPOSITORY):${VERSION}-amd64 . $(DOCKER_BUILDX_PUSH) --platform linux/arm64 -t $(REGISTRY)/$(REPOSITORY):latest-arm64 -t $(REGISTRY)/$(REPOSITORY):${VERSION}-arm64 . $(DOCKER_BUILDX_PUSH) --platform linux/ppc64le -t $(REGISTRY)/$(REPOSITORY):latest-ppc64le -t $(REGISTRY)/$(REPOSITORY):${VERSION}-ppc64le . - $(DOCKER_BUILDX_PUSH) --platform linux/arm/v6 -t $(REGISTRY)/$(REPOSITORY):latest-armv6 -t $(REGISTRY)/$(REPOSITORY):${VERSION}-armv6 . $(DOCKER_BUILDX_PUSH) --platform linux/arm/v7 -t $(REGISTRY)/$(REPOSITORY):latest-armv7 -t $(REGISTRY)/$(REPOSITORY):${VERSION}-armv7 . $(DOCKER_BUILDX_PUSH) --platform linux/s390x -t $(REGISTRY)/$(REPOSITORY):latest-s390x -t $(REGISTRY)/$(REPOSITORY):${VERSION}-s390x .