Skip to content

Commit 9ffe742

Browse files
committed
Change opcache mode to off by default
1 parent a5848a8 commit 9ffe742

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ on:
4545
options: ['on', 'off', 'both']
4646
description: 'Test opcache mode'
4747
required: false
48-
default: 'on'
48+
default: 'off'
4949
jobs:
5050
get-extension-matrix:
5151
runs-on: ubuntu-latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Build a PHP extension for a specific version.
7878
- `build-directory` (optional) - The directory to build the extension in, defaults to the user's temporary directory.
7979
- `run-tests` (optional) - Run the extension tests. Defaults to `true`.
8080
- `test-runner` (optional) - The test runner to use. Defaults to `run-tests.php`.
81-
- `test-opcache-mode` (optional) - Run tests with opcache `on`, `off` or `both`. Defaults to `on`.
81+
- `test-opcache-mode` (optional) - Run tests with opcache `on`, `off` or `both`. Defaults to `off`.
8282
- `auth-token` (optional) - Authentication token to use in case the extension is hosted on a private repository.
8383

8484
Instead of having to configure all the inputs for the extension action, you can use the `extension-matrix` action to get the matrix of jobs with different input configurations.

extension/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ inputs:
4242
test-opcache-mode:
4343
description: Test opcache mode
4444
required: false
45-
default: 'on'
45+
default: 'off'
4646
build-directory:
4747
description: Directory to build the extension in
4848
required: false

0 commit comments

Comments
 (0)