Skip to content

Commit

Permalink
fitness function for php 8.2 only checks for alpine 3.18 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
en-jschuetze authored Dec 8, 2023
1 parent c607cc3 commit 7a65ebb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/fitness-functions-release-8.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
steps:
- name: Execute
run: >
docker run --rm alpine cat /etc/os-release | grep $LATEST_ALPINE_RELEASE
docker run --pull always --rm alpine:3.18 cat /etc/os-release | grep $LATEST_ALPINE_RELEASE
php82-is-not-the-default-php-on-edge:
name: "We need to symlink php82 until php 8.2 is the default php"
runs-on: ubuntu-latest
steps:
- name: Execute
run: >
! docker run --rm alpine:3.18.4 sh -c 'apk -U add php82 && php -v'
! docker run --pull always --rm alpine:3.18 sh -c 'apk -U add php82 && php -v'
packages-not-available-on-alpine-for-release-8-2:
name: Package not available on alpine for php 8.2 in community, yet
Expand All @@ -37,4 +37,4 @@ jobs:
- php82-pecl-pcov
steps:
- name: Execute
run: "! docker run --rm alpine:3.18.4 apk --no-cache search ${{ matrix.package }} | grep ${{ matrix.package }}"
run: "! docker run --pull always --rm alpine:3.18 apk --no-cache search ${{ matrix.package }} | grep ${{ matrix.package }}"

0 comments on commit 7a65ebb

Please sign in to comment.