Skip to content

feat: add support for php 8.3 and node 20 #376

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_version: ['8.2','8.1','8.0','7.4','7.3','7.2']
php_version: ['8.3','8.2','8.1','8.0','7.4','7.3','7.2']
variant: ['apache','cli','fpm']
# builder: [ {arch: "amd64", os: "ubuntu-latest"}, {arch: "arm64", os: "macos-latest"}]
builder: [ {arch: "amd64", os: "ubuntu-latest"}, {arch: "arm64", os: "ubuntu-latest"}]
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_version: ['8.2','8.1','8.0','7.4','7.3','7.2']
php_version: ['8.3','8.2','8.1','8.0','7.4','7.3','7.2']
variant: ['apache','cli','fpm']
steps:
- name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

### Minor changes

* **2023-12-13**
* Support for PHP 8.3
* Support for Node v20

* **2022-12-18**
* Support for PHP 8.2

Expand Down
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,21 @@ blueprint: ## Generate all blueprints file
@if ! type orbit >/dev/null 2>&1; then echo "Missing orbit dependency, please install from https://github.com/gulien/orbit/"; exit 1; fi
orbit run generate

test-latest: test-8.2 ## Test the latest build only
test-latest: test-8.3 ## Test the latest build only

_test-prerequisites: blueprint
docker pull ubuntu:20.04

test-quick: ## Test 8.0, 8.1 and 8.2 quickly
test-quick: ## Test 8.0, 8.1, 8.2 and 8.3 quickly
VERSION=8.0 VARIANT=cli $(MAKE) _test-version-quick
VERSION=8.1 VARIANT=cli $(MAKE) _test-version-quick
VERSION=8.2 VARIANT=cli $(MAKE) _test-version-quick
VERSION=8.3 VARIANT=cli $(MAKE) _test-version-quick

test-8.3: ## Test php8.3 build only
VERSION=8.3 VARIANT=cli $(MAKE) _test-version
VERSION=8.3 VARIANT=apache $(MAKE) _test-version
VERSION=8.3 VARIANT=fpm $(MAKE) _test-version

test-8.2: ## Test php8.2 build only
VERSION=8.2 VARIANT=cli $(MAKE) _test-version
Expand Down
94 changes: 68 additions & 26 deletions README.md

Large diffs are not rendered by default.

Loading