I want to run the pipeline with such parameters
image: thecodingmachine/php:7.2-v2-apache
environment:PHP_EXTENSIONS=pgsql gettext imap sockets
Here is my:
image: thecodingmachine/php:7.2-v2-apache
environment:
PHP_EXTENSIONS='exif'
pipelines:
default:
- step:
name: tests
caches:
- composer
script:
- composer install
- ./vendor/bin/codecept run
Where to register env to make it work? thank
Hi Vlad,
Have you tried setting the environment variable as the first line in your script?
script:
- export PHP_EXTENSIONS='exif'
- composer install
- ./vendor/bin/codecept run
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.