mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
27 lines
754 B
Bash
Executable File
27 lines
754 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
case $1 in
|
|
|
|
win)
|
|
export SENDQUEUE=amqp.ci.queue.win.unit.send
|
|
export SENDTOPIC=amqp.ci.topic.win.unit.send
|
|
export SETUPSCRIPT="scripts/setup_script_unit.sh"
|
|
export RUNSCRIPT="scripts/run_script_unit.sh"
|
|
export JOB_NAME=odo-windows-unit-pr-build
|
|
export SENDEXCHANGE=amqp.ci.exchange.win.unit.send
|
|
export TIMEOUT="20m"
|
|
;;
|
|
|
|
mac)
|
|
export SENDQUEUE=amqp.ci.queue.mac.unit.send
|
|
export SENDTOPIC=amqp.ci.topic.mac.unit.send
|
|
export SETUPSCRIPT="scripts/setup_script_unit.sh"
|
|
export RUNSCRIPT="scripts/run_script_unit.sh"
|
|
export JOB_NAME=odo-mac-unit-pr-build
|
|
export SENDEXCHANGE=amqp.ci.exchange.mac.unit.send
|
|
export TIMEOUT="20m"
|
|
;;
|
|
esac
|
|
|
|
. scripts/openshiftci-e2e-4x-psi-tests.sh |