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
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.