Passing a parameter to gcloud app via Jenkins
问题 I am using Jenkins to trigger some stuff on gcloud and I need to be able to pass a parameter from the Build with parameters menu to the gcloud command that is being triggered. So let's say my gcloud command is: gcloud firebase test android run .... --device model=shamu I'd like the passed device model to be a variable. So I tried something like DEVICE_MODEL as parametrized string and stuff like this: gcloud firebase test android run .... --device model=${DEVICE_MODEL} gcloud firebase test