2022-06-11 17:10:07 +00:00
|
|
|
name: Monitor PHP 8.2
|
2021-07-01 10:32:03 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 6 * * *"
|
|
|
|
repository_dispatch:
|
|
|
|
types:
|
2022-06-11 17:10:07 +00:00
|
|
|
- monitor-php8.2
|
2021-07-01 10:32:03 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test_extensions:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
distro:
|
2021-12-05 15:49:11 +00:00
|
|
|
- alpine3.15
|
2022-06-06 13:38:26 +00:00
|
|
|
- alpine3.16
|
2023-01-22 10:33:20 +00:00
|
|
|
- alpine3.17
|
2023-06-23 13:46:51 +00:00
|
|
|
- alpine3.18
|
2021-07-01 10:32:03 +00:00
|
|
|
- buster
|
2021-08-24 14:02:49 +00:00
|
|
|
- bullseye
|
2023-06-23 13:46:51 +00:00
|
|
|
- bookworm
|
2021-07-01 10:32:03 +00:00
|
|
|
name: Check on ${{ matrix.distro }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
IPETEST_DOCKER_DISTRO: ${{ matrix.distro }}
|
2022-06-11 17:10:07 +00:00
|
|
|
IPETEST_ONLY_PHPVERSIONS: "8.2"
|
2021-07-01 10:32:03 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Test extensions
|
|
|
|
run: ./scripts/ci-test-extensions all
|
2021-07-01 10:41:48 +00:00
|
|
|
- name: Notify failures
|
|
|
|
if: failure()
|
|
|
|
uses: appleboy/telegram-action@master
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.TELEGRAM_TOKEN }}
|
|
|
|
to: ${{ secrets.TELEGRAM_TO }}
|
2022-06-11 17:10:07 +00:00
|
|
|
message: Testing packages against PHP 8.2 failed on https://github.com/mlocati/docker-php-extension-installer
|