From 7f7d1594c0b799e5032d988e373413071c2259c6 Mon Sep 17 00:00:00 2001 From: en-jschuetze <126695184+en-jschuetze@users.noreply.github.com> Date: Wed, 13 Nov 2024 12:47:36 +0100 Subject: [PATCH] Create fitness-functions-release-8.4.yml --- .../fitness-functions-release-8.4.yml | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/fitness-functions-release-8.4.yml diff --git a/.github/workflows/fitness-functions-release-8.4.yml b/.github/workflows/fitness-functions-release-8.4.yml new file mode 100644 index 0000000..4db8cee --- /dev/null +++ b/.github/workflows/fitness-functions-release-8.4.yml @@ -0,0 +1,41 @@ +name: php 8.4 Fitness Functions + +on: + push: + branches: + - 'main' + schedule: + - cron: '15 10 * * *' # each day at 10:15 UTC + + +jobs: + php83-is-not-the-default-php-on-edge: + name: "We need to symlink php84 until php 8.4 is the default php" + runs-on: ubuntu-latest + steps: + - name: Execute + run: > + ! docker run --rm alpine:edge sh -c 'apk add -U php84 --repository https://dl-cdn.alpinelinux.org/alpine/edge/testing/ && php -v' + + packages-not-available-on-alpine-for-community-release-8-4: + name: Package not available on alpine for php 8.4 in community, yet + runs-on: ubuntu-latest + strategy: + matrix: + package: + - php84 + - php84-pecl-amqp + steps: + - name: Execute + run: "! docker run --rm alpine:edge apk --no-cache search ${{ matrix.package }} | grep ${{ matrix.package }}" + + packages-not-available-on-alpine-testing-for-release-8-4: + name: Package not available on alpine for php 8.4 in testing, yet + runs-on: ubuntu-latest + strategy: + matrix: + package: + - php84-pecl-amqp + steps: + - name: Execute + run: "! docker run --rm alpine:edge apk --no-cache search --repository https://dl-cdn.alpinelinux.org/alpine/edge/testing/ ${{ matrix.package }} | grep ${{ matrix.package }}"