Skip to content

Commit 984e19d

Browse files
authored
Add fitness functions for php83
1 parent 2102d2e commit 984e19d

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: php 8.3 Fitness Functions
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
schedule:
8+
- cron: '15 10 * * *' # each day at 10:15 UTC
9+
10+
11+
jobs:
12+
php83-is-not-the-default-php-on-edge:
13+
name: "We need to symlink php83 until php 8.3 is the default php"
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Execute
17+
run: >
18+
! docker run --rm alpine:edge sh -c 'apk -U add php83 && php -v'
19+
20+
packages-not-available-on-alpine-for-release-8-3:
21+
name: Package not available on alpine for php 8.3 in community, yet
22+
runs-on: ubuntu-latest
23+
strategy:
24+
matrix:
25+
package:
26+
- php83
27+
- php83-pecl-memcached
28+
- php83-pecl-grpc
29+
- php83-pecl-pcov
30+
- php83-pecl-protobuf
31+
steps:
32+
- name: Execute
33+
run: "! docker run --rm alpine:edge apk --no-cache search ${{ matrix.package }} | grep ${{ matrix.package }}"

0 commit comments

Comments
 (0)