【发布时间】:2020-05-27 08:54:33
【问题描述】:
我对 Jenkins 还很陌生,这是我第一次设置参数。 我有多个帐户,我想为其运行相同的代码,以减少代码行数。
我有 5 个帐户,它们的 URL 使用相同的约定:
export PROFILE=account_one
export PATH="http://account_one/this-is-just-an-example/stack-overflow"
虽然有 1 个帐户不遵循此约定:
export PROFILE=account_two
export PATH="http://second_account/this-is-just-an-example/stack-overflow"
无论如何,我已经创建了一个名为“帐户”的多行字符串参数,并且我已经输入了所有 5 个帐户名称。这就是我现在想要做的:
if [ "${account}" = ???]
then
export PROFILE=${account}
export PATH="http://${account}/this-is-just-an-example/stack-overflow"
python3 run_code.py
elif [ "${account}" = "account_two" ]
export PROFILE="account_two"
export PATH="http://second_account/this-is-just-an-example/stack-overflow"
python3 run_code.py
fi
首先,我想确保我做对了,因为我以前从未在 Jenkins 中使用过任何参数化。
其次,我也不熟悉 Bash,所以我不确定这里的语法。
最后,这更像是一个编程问题,我不确定第一个 if 语句应该输入什么。 我尝试将 if 语句中的 aws_account 设置为多行字符串参数中的每个值。如:
if [ "${account}" = "account_one"] || [ "${account}" = "account_three"]
虽然,每个帐户都有不同的名称,并且需要不同的 PATH,即 account_one 的路径是“http://account_one/this-is-just-an-example/stack-overflow”,所以我不希望 account_three 的路径是“http://account_one/this-is-just-an-example/stack-overflow”。
我知道我的理解参差不齐,但 Jenkins 没有最好的例子,大多数都是互联网上未回答的问题。请帮忙。
编辑:我创建了 两个 多行字符串参数,一个用于遵循文件格式的帐户,一个用于不遵循文件格式的帐户。我决定为每个帐户使用一个 for 循环:
for i in "${account[@]}"; do
export PROFILE=${i}
export PATH="http://${i}/this-is-just-an-example/stack-overflow"
python3 run_code.py
done
for i in "${account_other[@]}"; do
export PROFILE=${i}
export PATH="http://${i}/this-is-just-an-example/stack-overflow"
python3 run_code.py
done
这对吗?
【问题讨论】:
-
您想在每次构建中循环运行您的所有帐户,还是每次构建选择一个帐户?
-
我想循环运行我的所有帐户。最终我打印出一份报告,我希望所有帐户都在那里。
标签: jenkins parameters jenkins-pipeline multilinestring