Is there any way to see the error log that happens in the pipeline?
Here's my YAML file
# This is a sample build configuration for PHP. # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Dockerhub as your build environment. image: phpunit pipelines: default: - step: script: # Modify the commands below to build your repository. - composer install - phpunit --bootstrap ./autoload.php --no-configuration src/tests
The build is failing but when I do the exact command in my development - "phpunit --bootstrap ./autoload.php --no-configuration src/tests". It works properly.
Having able to see the logs will really help.
Hi Michael,
You can view the logs of all your pipelines by navigating to the Pipelines page:
step1.png
You can then select the pipeline you wish to see the logs of:
step2.png
The logs are output here, you may need to click on the 'phpunit' or 'composer install' commands to expand the logs:
step3.png
If you require more logging, you can try and add the --verbose flag to phpunit. i.e use this script instead:
# This is a sample build configuration for PHP. # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Dockerhub as your build environment. image: phpunit pipelines: default: - step: script: # Modify the commands below to build your repository. - composer install - phpunit --verbose --bootstrap ./autoload.php --no-configuration src/tests
You may want to try this guide as well https://answers.atlassian.com/questions/39230190 As there are some possible variations that could cause your build to pass locally but fail in Bitbucket Pipelines. For example, caching of dependencies or the 2Gb memory limit on the build.
Those last two attachments (step2.png + step3.png) don't seem to make any sense at all.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.