Skip to content

Commit

Permalink
Update PHP to 8.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
donhardman committed Nov 15, 2024
1 parent fc302ff commit 8254967
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
APP_NAME: 'manticore-executor'
DOCKER_TAG: 'manticoresearch/manticore-executor'
PHP_VERSION: '8.3.4'
PHP_VERSION: '8.3.13'
MAINTAINER: 'Manticore'
DESC: 'Custom built PHP executor for Manticore.'
EXTRA_NAME: 'manticore-extra'
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
run: |
echo "app_version=$(echo ${{ github.ref_name }} | cut -dv -f2)" >> $GITHUB_OUTPUT
- name: Build manticore-executor-dev
run: ./build-linux 8.3.4 0 1
run: ./build-linux ${{ env.PHP_VERSION }} 0 1
shell: bash
- name: Create artifact
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
APP_NAME: 'manticore-executor'
PHP_VERSION: '8.3.4'
PHP_VERSION: '8.3.13'
MAINTAINER: 'Manticore'
DESC: 'Custom built PHP executor for Manticore.'

Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Manticore Executor is a custom built PHP binary which:

By default, we disable all extensions and enable only those required to run our scripts.

We build executor from `PHP 8.3.4` with the following extensions enabled and compiled into the executable statically:
We build executor from `PHP 8.3.13` with the following extensions enabled and compiled into the executable statically:

* pcntl
* posix
Expand Down Expand Up @@ -82,11 +82,10 @@ Several scripts used to build the final package:
* `build-linux`
* `build-osx`

The scripts accept a version of PHP as a parameter. The current version is `8.3.4`. To build the binary, you should run the following example:
The scripts accept a version of PHP as a parameter. The current version is `8.3.13`. To build the binary, you should run the following example:

```bash
./build-linux "8.3.4"
./build-linux "8.3.13"
```

The command above will build the package on Linux with **PHP** `8.3.4`. Once it's done, you can find your binary in folder `dist/bin`.

The command above will build the package on Linux with **PHP** `8.3.13`. Once it's done, you can find your binary in folder `dist/bin`.

0 comments on commit 8254967

Please sign in to comment.