Skip to content

Commit a7589f8

Browse files
committed
Chore: Fix: Fix a Scrtinizer config error
``` Config Error: Unrecognized option "version" under "{root}.build.nodes.test-with-php80.services.php". Available options are "command", "env", "image", "ports", "ramdisks". ``` ``` $ git clone --depth=200 --branch='dev' --reference=local-repository-dir --dissociate https://github.com/michaeluno/admin-page-framework.git /tmp/packageOtmK7L Cloning into '/tmp/packageOtmK7L'... remote: Enumerating objects: 5, done. remote: Counting objects: 100% (5/5), done. remote: Compressing objects: 100% (1/1), done. remote: Total 3 (delta 2), reused 3 (delta 2), pack-reused 0 Unpacking objects: 100% (3/3), 772 bytes | 40.00 KiB/s, done. Enumerating objects: 106434, done. Counting objects: 100% (106434/106434), done. Delta compression using up to 32 threads Compressing objects: 100% (22907/22907), done. Writing objects: 100% (106434/106434), done. Total 106434 (delta 84449), reused 105241 (delta 83352) $ git checkout -qf 1b92f1f Parsing custom inspection configuration Parsing checkout configuration Configuration was invalid: Unrecognized option "version" under "{root}.build.nodes.test-with-php80.services.php". Available options are "command", "env", "image", "ports", "ramdisks". Aborting due to config error. ```
1 parent 1b92f1f commit a7589f8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.scrutinizer.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ build:
4646
# @see https://scrutinizer-ci.com/docs/guides/upgrading-trusty-image
4747
image: default-bionic
4848
services:
49-
php:
50-
version: 8.1.2
49+
php: 8.0
5150
apache2:
5251
modules: ['rewrite']
5352
sites:
@@ -57,8 +56,7 @@ build:
5756
test-with-php81:
5857
image: default-bionic
5958
services:
60-
php:
61-
version: 8.1.2
59+
php: 8.1.2
6260
apache2:
6361
modules: ['rewrite']
6462
sites:

0 commit comments

Comments
 (0)