We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Oftentimes we have code like this in our task.yamls:
prepare: | #shellcheck source=tests/lib/nested.sh . "$TESTSLIB/nested.sh" prepare_something_from_nested.sh restore: | #shellcheck source=tests/lib/nested.sh . "$TESTSLIB/nested.sh" restore_something_from_nested.sh execute: | #shellcheck source=tests/lib/nested.sh . "$TESTSLIB/nested.sh" execute_something_from_nested.sh
it would be nice if we could somehow simplify this with just
common: | #shellcheck source=tests/lib/nested.sh . "$TESTSLIB/nested.sh" prepare: | prepare_something_from_nested.sh restore: | restore_something_from_nested.sh execute: | execute_something_from_nested.sh
this would reduce a lot of duplication we have in our spread task.yaml's in snapd.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Oftentimes we have code like this in our task.yamls:
it would be nice if we could somehow simplify this with just
this would reduce a lot of duplication we have in our spread task.yaml's in snapd.
The text was updated successfully, but these errors were encountered: