Extraargs
There are currently no pipelines.
To run a merge request pipeline, the jobs in the CI/CD configuration file must be configured to run in merge request pipelines and you must have sufficient permissions in the source project.
GitLab service scheduled maintenance on Monday, August 18th 2025 as of 07h00 Geneva time for a period of 3 hours. Further information under OTG0157026.
This adds the ability to store extra arguments in the command line option parser. For example if you have something like this:
myapp -i blub -o bla file1.txt file2.txt file3.txt ......
file1.txt file2.txt etc will appear in the property tree in a list called extraargs
extraargs
is a node which contains elements that have an empty key and the values are the strings (in the example file1.txt
etc)
So you have to loop over the content of extraargs
to retrieve the options.
This can be used to pass a list of files to an application. A well known example for this pattern is hadd
To run a merge request pipeline, the jobs in the CI/CD configuration file must be configured to run in merge request pipelines and you must have sufficient permissions in the source project.