I do not think that you can pass an excel file to a build to use it as 
parameters, but the readCSV step can read CSV files generated with Excel 
see 
https://jenkins.io/doc/pipeline/steps/pipeline-utility-steps/#readcsv-read-content-from-a-csv-file-in-the-workspace
 so 
you can pass a CSV file and use it to export environment variables to use 
them on your build, I've made something similar recently but with 
properties files this is the code


```
          def config = readProperties(file: 'my-porperties.properties')
          config.each { k, v ->
              env."${k}" = v
          }
```

El jueves, 4 de abril de 2019, 13:59:44 (UTC+2), chenna keshav escribió:
>
> Hi Guys, 
>
> I would like to know that is there any way that we could pass Excel sheet 
> as a build parameter to Jenkins standalone project.. 
>
> Thanks, 
> Keshav 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/b9527708-ba71-477a-b9b7-1769fb38481b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to