hi !
i'm very junior developer, I will try to explain as best I can
I'm trying to set up the CICD, my project is split into API / dasboard front
in my dashboard project, in my pipeline i run :
image: (php image dev 7.4)
pipelines:
branches:
main:
- step:
name: test-unit
script:
- yarn install
- composer install --no-progress --dev --ansi -nv --prefer-dist --optimize-autoloader
the composer command fail because i don't have css directory
do i have to use the artifacts ? use the compose cache ? or anything ? thank you
EDIT :
fixed with :
- composer install --ignore-platform-reqs --no-scripts
instead of
- composer install --no-progress --dev --ansi -nv --prefer-dist --optimize-autoloader
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.