В настоящее время я выполняю свои приемочные тесты с помощью кодирования вручную. Теперь пришло время сделать следующий шаг.
Я хочу создать конвейер в Gitlab для автоматического запуска моих приемочных тестов.
Самая первая проблема - это .gitlab-ci.yml, где я действительно не знаю, как это реализовать.
Я сделал это так, как описано в этой документации: https://codeception.com/docs/12-ContinuousIntegration
Но я всегда получаю ошибки.
Самая новая ошибка:
*error: zip support requires ZLIB. Use --with-zlib-dir=<DIR> to specify prefix where ZLIB include and library are located*
Я пробовал несколько изображений из док-центра, но ни один из них не был успешным.
Это мой текущий .gitlab-ci.yml:
# Select what we should cache
cache:
paths:
- vendor/
services:
- selenium/standalone-chrome:latest
before_script:
# Install git and unzip (composer will need them)
- apt-get update && apt-get install -qqy git unzip
#zip
- apt-get install -y zlib1g-dev
- apt-get update && apt-get install -y libzip-dev
- docker-php-ext-install zip
# Install composer
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
# Install all project dependencies
- composer install
#install node
- apt-get update && curl -sL https://deb.nodesource.com/setup_8.x | bash - && apt-get install -y build-essential nodejs
- npm init -y
- npm install -g eslint --unsafe-perm=true --alow-root
- npm config set prefix ~/.local
- PATH=~/.local/bin/:$PATH
- apt-get update -q -y
- apt-get --yes install libnss3
- apt-get --yes install libgconf-2-4
#install wget
- apt-get --yes install wget
#install gnupg2
- apt-get update && apt-get install -y gnupg2
# Install chrome
# Add key
- curl -sS -L https://dl.google.com/linux/linux_signing_key.pub | apt-key add -
# Add repo
- echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list
- apt-get update -q -y
- apt-get install -y google-chrome-stable
- npm install chromedriver -g
- npm install https://gitlab.com/gitlab-org/gitlab-selenium-server.git -g
# The `&` at the end causes it to run in the background and not block the following commands
- nohup chromedriver --port=4444 --url-base=wd/hub &
- nohup gitlab-selenium-server &
# Test
test:
script:
- vendor/bin/codecept run --env chrome