mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
20 lines
543 B
Bash
Executable File
20 lines
543 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 |