What is the best way to add existing binary files to a Jenkins pipeline build?
I have a Python script that wraps around an existing closed source binary exe file. Because it's not possible to include the exe in the GitHub repo due to licensing, I'd like to add the binary from a local server as a step in the build process. The closed source binary can be packaged for internal use but it can't be added to the SCM.
Is this possible with Jenkins's pipeline?