Skip to content

Commit

Permalink
[INFR] Fixed workflows/actionss
Browse files Browse the repository at this point in the history
  • Loading branch information
HorstOeko committed Dec 20, 2024
1 parent 1172797 commit ddb471e
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 309 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/build.doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,27 @@ jobs:
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
php-version: "8.3"
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, bcmath, intl, gd, exif, iconv, imagick, json, xdebug
coverage: xdebug

- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-8.3-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-8.3-composer-
- name: Install composer dependencies
run: |
composer config -g github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
composer install
- name: Prepare Directories
run: |
mkdir build/builddoc
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/build.php73.ant.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/build.php74.ant.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/build.php80.ant.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/build.php81.ant.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/build.php81.release.ant.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/build.php82.ant.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/build.php83.ant.yml

This file was deleted.

6 changes: 6 additions & 0 deletions .github/workflows/build.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,12 @@ jobs:
with:
files: "build/logs/junit.xml"

- name: Publish Build Logs
uses: actions/upload-artifact@v4
with:
name: Build log artifacts for ubuntu-24.04 PHP 8.3 (Release)
path: build/logs

- name: Update Wiki
continue-on-error: true
run: |
Expand Down

0 comments on commit ddb471e

Please sign in to comment.