請按照有關訪問權限的the Jenkins plugin page的文檔,但不是非互動用戶,而是添加Jenkins正在使用的用戶。 (我喜歡在我的評審裁決名爲「詹金斯的一個單獨的用戶)
[access "refs/heads/*"]
label-Code-Review = -1..+1 group user/<Jenkins User Id>
label-Verified = -1..+1 group user/<Jenkins User Id>
的代碼審查的訪問權限已似乎是在默認地方,但無論在任何情況下添加,並添加讀取權限。正常情況下,Access選項卡中提供訪問權限。
我爲自己製作了一個腳本來簡化編輯訪問權限。我創建了一次訪問權限,並在文件'groups'和'project.config'中檢入了github回購。這裏的腳本:
#!/bin/bash
usage(){
echo "Parameter 1: userid (GitHub & GerritHub)"
echo "Parameter 2: repository name"
exit 1
}
printline(){
echo -e "${GRAY}====================${BLACK}"
}
check(){
if [[ $? -ne 0 ]]; then
echo -e "${RED}Failed: ${1}${BLACK}"
echo $2
rm -rf $tmp
exit 1
else
echo -e "$1 - ${GREEN}DONE${BLACK}"
printline
fi
}
if [[ $# -ne 2 ]]; then
usage
fi
RED='\033[0;31m'
GREEN='\033[0;32m'
GRAY='\033[1;30m'
BLACK='\033[0m' # No Color
userid=$1
repo=$2
organization="FILL IN HERE"
template="FILL IN HERE"
if [[ -z "$userid" ]]; then
usage
fi
if [[ -z "$repo" ]]; then
usage
fi
tmp=$(mktemp -d)
[[ -f ~/.ssh/id_rsa ]] && [[ -f ~/.ssh/id_rsa.pub ]]
check "Check key pair in ~/.ssh/" ""
cd $tmp
git clone [email protected]:${organization}/${repo}.git
check "Clone $repo to $tmp " "(project created in GitHub? https://github.com/organizations/${organization}/repositories/new)"
cd $repo
git remote add GerritHub ssh://${userid}@review.gerrithub.io:29418/${organization}/${repo}
check "Add GerritHub as remote " "(is the project imported to GerritHub? https://review.gerrithub.io/plugins/github-plugin/static/repositories.html)"
git fetch GerritHub refs/meta/config:refs/remotes/GerritHub/meta/config
check "Get current access config" "(is the project imported to GerritHub? https://review.gerrithub.io/plugins/github-plugin/static/repositories.html)"
git checkout GerritHub/meta/config
check "Check out meta/config from GerritHub"
git fetch ssh://[email protected]/${organization}/${template} master && git cherry-pick FETCH_HEAD --strategy-option theirs
check "Get access template from GitHub" ""
git push -f GerritHub HEAD:refs/meta/config
check "Push new access rights to GerritHub" ""
rm -rf $tmp
是否有另一種方式比創建一個新的GitHub帳戶,並將其鏈接到GerritHub創建Jenkins用戶? 此外,您的答案會使您看起來像直接更改Gerrit配置文件。到目前爲止,我只找到了一種通過GerritHub Web UI更改配置的方法。有什麼我錯過了嗎? – fap
據我所知,沒有匿名登錄,所以爲了我的目的,我想創建一個新用戶。您可以使用現有帳戶,但我喜歡將帳戶分開,結果以「Jenkins」作爲發件人的名稱更好。 –
是的,我直接向GerritHub提交配置文件。這樣它可以立即訪問。現在從腳本執行它,以便我可以在我的所有項目中重複使用它。 –