mammoth-autumn-37948
12/01/2021, 12:06 PMmammoth-autumn-37948
12/01/2021, 12:17 PMpurple-coat-90835
12/01/2021, 12:31 PM\Pyz\Zed\Console\ConsoleConfig::isDevelopmentConsoleCommandsEnabled
mammoth-autumn-37948
12/01/2021, 12:33 PMENABLE_DEVELOPMENT_CONSOLE_COMMANDS
is also true defined in config docker.cimammoth-autumn-37948
12/01/2021, 1:31 PMmammoth-autumn-37948
12/01/2021, 2:03 PMSPRYKER_PIPELINE
is not passed directly but seems to be there..
I am without ideas of what it could be :(mammoth-autumn-37948
12/01/2021, 2:08 PMcomposer install --no-interaction --dev -vvv
is correct and should install everything..
do u use github action too?mammoth-autumn-37948
12/01/2021, 2:31 PMhigh-pencil-62400
12/01/2021, 7:49 PMmammoth-autumn-37948
12/02/2021, 8:41 AM--no-dev
(as Suite for ci) the Cli backed image for Ci need the dev packages to run the tests and in this case you have luck that it works because the cli baked image run the command as so composer install --no-interactive ${SPRYKER_COMPOSER_MODE}
because the SPRYKER_COMPOSER_MODE
is not passed as arg to cli baked image.
I fixed it locally and i just provided another var named SPRYKER_COMPOSER_MODE_CLI
with empty value or --dev
in deploy yml recipe otherwise in the case i have composer mode in yml to --no-dev
it will not work because the cli just not install the dev packages..
Maybe there is another better solution, but it was for me the quickly and clean in the moment.
(The same happened for the var SPRYKER_COMPOSER_AUTOLOAD
that is not passed to cli baked image).high-pencil-62400
12/02/2021, 12:01 PMmammoth-autumn-37948
12/02/2021, 12:02 PM