-
Notifications
You must be signed in to change notification settings - Fork 6
49 lines (44 loc) · 1.43 KB
/
fitness-functions-release-8.4-zts.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: php 8.4-zts Fitness Functions
on:
push:
branches:
- 'main'
schedule:
- cron: '15 10 * * *' # each day at 10:15 UTC
jobs:
configured-alpine-is-latest-version:
name: "Ensure that Alpine is the latest alpine version"
env:
LATEST_ALPINE_RELEASE: "3.21.3"
runs-on: ubuntu-latest
steps:
- name: Execute
run: >
docker run --rm alpine:3.21 cat /etc/os-release | grep $LATEST_ALPINE_RELEASE
configured-go-version-is-required-one:
name: "Ensure that Go 1.23 is the version required by frankenphp"
runs-on: ubuntu-latest
steps:
- name: Execute
run: >
curl -sS https://github.com/dunglas/frankenphp/blob/main/go.mod | grep "go1.23"
packages-not-available-on-alpine-for-release-8-4-zts:
name: Package not available on alpine for php 8.4 zts 3.21 community, yet
runs-on: ubuntu-latest
strategy:
matrix:
package:
- phpzts84
- phpzts84-pecl-redis
- phpzts84-pecl-memcached
- phpzts84-pecl-msgpack
- phpzts84-pecl-imagick
- phpzts84-pecl-apcu
- phpzts84-pecl-amqp
- phpzts84-pecl-protobuf
- phpzts84-pecl-grpc
- phpzts84-pecl-pcov
- phpzts84-pecl-xdebug
steps:
- name: Execute
run: "! docker run --rm alpine:3.21 apk --no-cache search ${{ matrix.package }} | grep ${{ matrix.package }}"