2

我试图在我的回购中使用审查器,但返回:

Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Installation request for laravel/dusk v6.10.0 -> satisfiable by laravel/dusk[v6.10.0].
    - laravel/dusk v6.10.0 requires ext-zip * -> the requested PHP extension zip is missing from your system.
  Problem 2
    - Installation request for php-webdriver/webdriver 1.9.0 -> satisfiable by php-webdriver/webdriver[1.9.0].
    - php-webdriver/webdriver 1.9.0 requires ext-zip * -> the requested PHP extension zip is missing from your system.

  To enable extensions, verify that they are enabled in your .ini files:
    - /home/scrutinizer/.phpenv/versions/7.3.15/etc/php.ini
    - /home/scrutinizer/.phpenv/versions/7.3.15/etc/conf.d/pyrus.ini
  You can also run `php --ini` inside terminal to see which files are used by PHP in CLI mode.

如何安装zip扩展?

我尝试使用此配置但无法正常工作:

build:
    nodes:
        analysis:
            dependencies:
                before:
                    - sudo apt-get install -y php-zip
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
                    - js-scrutinizer-run
        tests: true
4

2 回答 2

2

正确的配置是:

build:
    tests:
        override:
            - true

    nodes:
        tests:
            environment:
                php:
                    version: 7.4
                    pecl_extensions:
                        - zip
        analysis:
            environment:
                php:
                    version: 7.4
                    pecl_extensions:
                        - zip
            tests:
                override: [php-scrutinizer-run]

我只是从这个 repo中复制的(我用关键字 '.scrutinizer.yml php github zip' 用谷歌搜索),但实际上已经在官方文档中描述了。我读过它,但被误解了。

于 2020-12-20T11:32:47.423 回答
0


看看这个链接

如果你想安装,你应该这样做abc,例如:

build:
  nodes:
    some-node:
      dependencies:
        before:
          - sudo apt-get install -y abc

在您的示例中,您可以这样做:

build:
    nodes:
        analysis:
            dependencies:
                before:
                    - sudo apt-get install -y zip unzip php-zip
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
                    - js-scrutinizer-run
        tests: true
于 2020-12-20T10:33:25.213 回答