mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* resolve job script error Signed-off-by: anandrkskd <anandrkskd@gmail.com> * run only devifle e2e test Signed-off-by: anandrkskd <anandrkskd@gmail.com>
21 lines
482 B
Bash
Executable File
21 lines
482 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case $1 in
|
|
|
|
win)
|
|
export SENDQUEUE=amqp.ci.queue.win.e2e.send
|
|
export SENDTOPIC=amqp.ci.topic.win.e2e.send
|
|
export JOB_NAME=odo-windows-e2e-pr-build
|
|
export SENDEXCHANGE=amqp.ci.exchange.win.e2e.send
|
|
;;
|
|
|
|
mac)
|
|
export SENDQUEUE=amqp.ci.queue.mac.e2e.send
|
|
export SENDTOPIC=amqp.ci.topic.mac.e2e.send
|
|
export JOB_NAME=odo-mac-e2e-pr-build
|
|
export SENDEXCHANGE=amqp.ci.exchange.mac.e2e.send
|
|
;;
|
|
esac
|
|
|
|
. scripts/openshiftci-e2e-4x-psi-tests.sh
|