I'm using pre-commit's check-yaml hook and also used the bitbucket pipeline validator to check this. Both report a problem with the last line
image: python:3.6.9
definitions:
steps:
- step: &test
name: Run Unit Tests
script:
- echo "DATE: $(date -Iseconds) UTC_TIME: $(date "+%s") GIT_HASH: $BITBUCKET_COMMIT"
- echo ": : "
check-yaml reports that the second colon "mapping values are not allowed in this context". Same error if you comment out the first echo step, and leave the second.
bitbucket pipeline validator reports "bad indentation of a sequence entry". Same error if you comment out the first echo step, and leave the second.
This shell code originally was in a bash script and runs fine, but including the shell code directly into the bitbucket-pipeline.yml creates errors. Is this caused by validators that cannot handled quoted strings?
Did you ever figure out how to get around this? I am seeing the same issue (interpretation of colons in the script section as an attempt to map).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I went back to using a bash script called from the pipeline. In my experience, the more you can put into a script (bash, python, etc) rather than literal commands in the bitbucket-pipelines.yml the better. Benefits include:
- execution of the scripts in your development environment (faster modify-test-fix cycle) and other places (git-hooks)
- more code reuse as the bitbucket-pipelines validator stops validating when it finds a step definition
- fewer dependencies on yaml formatting for long wrapped steps
I am even considering replacing the use of atlassian provided pipelines for aws because they use environment variables instead of aws cli settings. That alone lead to many frustrating days.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.