This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We are mapping the existing flags so that we are able to get the arguments passed by a pre-commit hook consumer in the "args" element of its configuration
mdelapenya
commented
Sep 14, 2020
|
||
## Iterate for each file without failing fast. | ||
for file in "${files[@]}"; do | ||
# shellcheck disable=SC2086 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm disabling double-quoting the ${arguments}
and ${file}
variables because otherwise they won't be passed to the docker container properly.
💚 Build SucceededExpand to view the summary
Build stats
Test stats 🧪
Steps errorsExpand to view the steps failures
|
kuisathaverat
approved these changes
Sep 15, 2020
v1v
approved these changes
Sep 15, 2020
cachedout
approved these changes
Sep 15, 2020
We'd need to release a new version of our lovely library ❤️ |
v1v
referenced
this pull request
in v1v/apm-pipeline-library-backup
Sep 15, 2020
* upstream/master: Remove folder jobdsl reference (#725) docs: update CHANGELOG.md [maven-release-plugin] prepare for next development iteration [maven-release-plugin] prepare release v1.1.138 Allow withGoEnv to accept an OS override arg (#724) fix: support using gherkin-lint args (#723) [test-infra] fix pytests with multimodule (#722)
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this PR do?
We are mapping the existing flags so that we are able to get the arguments passed by a pre-commit hook consumer in the "args" element of its configuration.
We are using positional parameters from shell, shifting when needed. We are building a new array for the files, and the arguments as a string. We will pass the arguments to the docker image.
Why is it important?
The e2e-testing is disabling some configurations, and they are still reported because the hook was not reading the arguments passed by pre-commit in the
args
element in the configuration (See https://github.com/elastic/e2e-testing/blob/master/.pre-commit-config.yaml#L39)Related issues
How to test this
To see existing flags
Run with a disabled configuration, multiple files
Run with success, multiple files