Skip to content

Commit

Permalink
Added PHP8.4 Build (Ant)
Browse files Browse the repository at this point in the history
  • Loading branch information
HorstOeko committed Oct 11, 2024
1 parent d7392cc commit 64110b6
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build.php84.ant.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: CI (Ant, PHP 8.4)

on:
push:
tags-ignore:
- '**'
branches:
- '**'
paths-ignore:
- '**.md'
- '.github/**'
- 'examples/**'
pull_request:
types:
- opened
branches:
- 'master'
workflow_dispatch:

jobs:
build:
permissions: write-all
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
extensions: imagick, swoole
coverage: xdebug
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'
- name: Build with Ant
run: ant -noinput -buildfile build.ant.xml
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: github.event_name != 'pull_request'
with:
files: "./build/logs/junit.xml"

0 comments on commit 64110b6

Please sign in to comment.