-
Bug
-
Resolution: Unresolved
-
Blocker
-
jenkins version 1.595
ios connector plugin 1.2
I want to put the device id dynamically to deploy to ios device by passing an argument to my job, but the plugin does not resolve the value of the parameter and I get an error telling "No such a device: $DEVICE_ID"
[JENKINS-26255] Environment variables are not recognized in the device text field
Workflow | Original: JNJira [ 160314 ] | New: JNJira + In-Review [ 180311 ] |
Labels | Original: envinronment-variables ios parameters plugin | New: envinronment-variables environment-variables ios parameters plugin |
Labels | Original: envinronment-variables environment-variables ios parameters plugin | New: environment-variables ios parameters plugin |
A valid request, but there's really no need for this feature when it can be replaced by 3 lines of bash:
npm install -g ios-deploy
npm install -g ipa-deploy
ipa-deploy foo.ipa --id $DEVICE_ID --uninstall
Of course it then uses the much more updated ios-deploy (the device connector plugin uses fruitstrap which isn't maintained for years now).