From bba5e0f2c3f450b59ba6fb033cbcc58ecd950125 Mon Sep 17 00:00:00 2001 From: alexanderM91 Date: Thu, 17 Oct 2024 21:17:16 +0200 Subject: [PATCH] Notification + diff --- .github/compare-images.sh | 2 +- .github/workflows/ci.yml | 43 +++++++++++++++++++++++++++++++++++++-- 2 files changed, 42 insertions(+), 3 deletions(-) diff --git a/.github/compare-images.sh b/.github/compare-images.sh index 3e971f1d..9b8cd13e 100755 --- a/.github/compare-images.sh +++ b/.github/compare-images.sh @@ -12,7 +12,7 @@ IMAGE_TAG=$1 # Run the Docker image and output the required information docker run -i --rm "$IMAGE_TAG" sh -s <<'EOF' echo "=== Alpine Version ===" - cat /etc/alpine-release + echo -n "Alpine " && cat /etc/alpine-release echo "" echo "=== Installed PHP Extensions ===" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0dc71ca..3fd9eb77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,8 +12,47 @@ jobs: ## Alpine ### Alpine 3.17 - image: "alpine/3.17/8.1/Dockerfile" - tags: [ "spryker/php:8.1-alpine3.17" ] - platforms: [ "linux/amd64" ] + tags: "8.1-alpine3.17" + platforms: "linux/amd64" + - image: "alpine/3.17/8.2/Dockerfile" + tags: "8.2-alpine3.17" + platforms: "linux/amd64" + - image: "alpine/3.17/8.3/Dockerfile" + tags: "8.3-alpine3.17" + platforms: "linux/amd64" + + ### Alpine 3.18 + - image: "alpine/3.18/8.1/Dockerfile" + tags: "8.1-alpine3.18" + platforms: "linux/amd64" + - image: "alpine/3.18/8.2/Dockerfile" + tags: "8.2-alpine3.18" + platforms: "linux/amd64" + - image: "alpine/3.18/8.3/Dockerfile" + tags: "8.3-alpine3.18" + platforms: "linux/amd64" + + ### Alpine 3.19 + - image: "alpine/3.19/8.1/Dockerfile" + tags: "8.1-alpine3.19" + platforms: "linux/amd64" + - image: "alpine/3.19/8.2/Dockerfile" + tags: "8.2-alpine3.19" + platforms: "linux/amd64" + - image: "alpine/3.19/8.3/Dockerfile" + tags: "8.3-alpine3.19" + platforms: "linux/amd64" + + ### Alpine 3.20 + - image: "alpine/3.20/8.1/Dockerfile" + tags: "8.1-alpine3.20" + platforms: "linux/amd64" + - image: "alpine/3.20/8.2/Dockerfile" + tags: "8.2-alpine3.20" + platforms: "linux/amd64" + - image: "alpine/3.20/8.3/Dockerfile" + tags: "8.3-alpine3.20" + platforms: "linux/amd64" steps: - name: Check out repository