Gitlab Ci使用docker和mysql服务进行缓慢构建

问题描述 投票:3回答:1

我正在使用gitlab-ci-multirunner 9.3.0和GitLab Community Edition 9.3.5

当我在我的本地虚拟盒环境中运行我的php-unit测试时,总测试(30)只需要:

Time: 5 minutes, Memory: 96.00MB

在我的gitlab主机上运行相同的测试,它总共需要

Time: 41.68 minutes, Memory: 97.75MB

测试需要mysql并在每次测试时执行数据库创建和夹具加载。

我的DockerFile:

FROM tetraweb/php:5.6

# Install additional packages
RUN apt-get clean && apt-get -qq update
RUN apt-get -qq upgrade -y
RUN apt-get install -qq -y apt-utils
RUN apt-get install -qq -y mysql-client libmagickwand-dev libgeoip-dev -y --no-install-recommends
RUN pecl install imagick apcu-4.0.11 geoip
RUN docker-php-ext-enable exif gd gettext intl mcrypt mysql mysqli opcache pdo_mysql zip memcache apcu imagick geoi

我的gitlab-ci.yml:

variables:
  TIMEZONE: Europe/Berlin
  MYSQL_DATABASE: test
  MYSQL_ROOT_PASSWORD: test-root
  MYSQL_USER: test
  MYSQL_PASSWORD: asecurething
  SYMFONY_ENV: "test"

stages:
  - test
  - deploy

test:
  image: test-image-php:5.6
  services:
    - mariadb:latest
  stage: test
  only:
    - branches
  except:
    - master
  script:
      - export COMPOSER_CACHE_DIR=x/cache/composer
      - SYMFONY_ENV=test composer install --no-progress --no-interaction
      - chmod +x bin/console
      - php vendor/phpunit/phpunit/phpunit --coverage-text --colors=never

我真的认为那是创造巨大差异的mysql服务错误。什么是提高我的phpunit测试性能的最佳方法?

php docker phpunit gitlab-ci
1个回答
3
投票

我正在使用gitlab-ci 10.3.0,我在服务器上的测试耗时40分钟,但在Mac上需要2分钟。服务器超出了Mac,除了Mac使用SSD的硬盘。

不确定是否有合适的解决方案,但我修改了我的跑步者配置以匹配Docker Executor - Mounting a directory in RAM中的那个。

我在config.toml中添加了以下内容:

[runners.docker]
# For the main container
[runners.docker.tmpfs]
    "/var/lib/mysql" = "rw,noexec"

# For services
[runners.docker.services_tmpfs]
    "/var/lib/mysql" = "rw,noexec"

我设法在服务器上将构建时间减少到2分钟。

© www.soinside.com 2019 - 2024. All rights reserved.