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
A docker based job that has a command and arguments defined has its arguments field appended to each time the job runs. For example:
{ "name": "hello", "container": { "type": "DOCKER", "image": "myimage" }, "command": "/myapp", "arguments": ["--foo --bar"] }
After the first run, if you look at the job configuration the arguments are now:
"arguments": ["--foo --bar", "--foo --bar"]
Each execution appends the arguments again and again.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A docker based job that has a command and arguments defined has its arguments field appended to each time the job runs. For example:
After the first run, if you look at the job configuration the arguments are now:
Each execution appends the arguments again and again.
The text was updated successfully, but these errors were encountered: