@@ -31,6 +31,9 @@ TEST_GITOPS_GITLAB_REPO=https://gitlab.com/$TEST_REPO_GITLAB_ORG/tssc-dev-gitops
31
31
TEST_BUILD_JENKINS_REPO=https://github.com/$TEST_REPO_ORG /tssc-dev-source-jenkins
32
32
TEST_GITOPS_JENKINS_REPO=https://github.com/$TEST_REPO_ORG /tssc-dev-gitops-jenkins
33
33
34
+ TEST_BUILD_AZURE_REPO=https://github.com/$TEST_REPO_ORG /tssc-dev-source-azure
35
+ TEST_GITOPS_AZURE_REPO=https://github.com/$TEST_REPO_ORG /tssc-dev-gitops-azure
36
+
34
37
# If you prefer to use ssh git urls
35
38
if [ -n " $USE_SSH_GIT_URLS " ]; then
36
39
[email protected] :
$TEST_REPO_ORG /devfile-sample-nodejs-dance.git
@@ -39,6 +42,8 @@ if [ -n "$USE_SSH_GIT_URLS" ]; then
39
42
[email protected] :
$TEST_REPO_GITLAB_ORG /tssc-dev-gitops.git
40
43
[email protected] :
$TEST_REPO_ORG /tssc-dev-source-jenkins.git
41
44
[email protected] :
$TEST_REPO_ORG /tssc-dev-gitops-jenkins.git
45
+ [email protected] :
$TEST_REPO_ORG /tssc-dev-source-azure.git
46
+ [email protected] :
$TEST_REPO_ORG /tssc-dev-gitops-azure.git
42
47
fi
43
48
44
49
function cloneRepo() {
@@ -92,6 +97,7 @@ function cloneRepo() {
92
97
# Github in build/gitops
93
98
# Gitlab in gitlab-build, gitlab-gitops
94
99
# Jenkins in jenkins-build, jenkins-gitops
100
+ # Azure in azure-build, azure-gitops
95
101
96
102
TMP_REPOS=tmp
97
103
rm -rf $TMP_REPOS /*
@@ -101,6 +107,8 @@ GITLAB_BUILD=$TMP_REPOS/gitlab-build
101
107
GITLAB_GITOPS=$TMP_REPOS /gitlab-gitops
102
108
JENKINS_BUILD=$TMP_REPOS /jenkins-build
103
109
JENKINS_GITOPS=$TMP_REPOS /jenkins-gitops
110
+ AZURE_BUILD=$TMP_REPOS /azure-build
111
+ AZURE_GITOPS=$TMP_REPOS /azure-gitops
104
112
105
113
# Change this for public or private image testing
106
114
export TEST_PRIVATE_REGISTRY=${TEST_PRIVATE_REGISTRY:- true}
@@ -117,6 +125,8 @@ cloneRepo $UPSTREAM_BUILD_REPO ${TEST_BUILD_GITLAB_REPO_SSH:-$TEST_BUILD_GITLAB_
117
125
cloneRepo $UPSTREAM_GITOPS_REPO ${TEST_GITOPS_GITLAB_REPO_SSH:- $TEST_GITOPS_GITLAB_REPO } $TEST_GITOPS_GITLAB_REPO $GITLAB_GITOPS
118
126
cloneRepo $UPSTREAM_BUILD_REPO ${TEST_BUILD_JENKINS_REPO_SSH:- $TEST_BUILD_JENKINS_REPO } $TEST_BUILD_JENKINS_REPO $JENKINS_BUILD
119
127
cloneRepo $UPSTREAM_GITOPS_REPO ${TEST_GITOPS_JENKINS_REPO_SSH:- $TEST_GITOPS_JENKINS_REPO } $TEST_GITOPS_JENKINS_REPO $JENKINS_GITOPS
128
+ cloneRepo $UPSTREAM_BUILD_REPO ${TEST_BUILD_AZURE_REPO_SSH:- $TEST_BUILD_AZURE_REPO } $TEST_BUILD_AZURE_REPO $AZURE_BUILD
129
+ cloneRepo $UPSTREAM_GITOPS_REPO ${TEST_GITOPS_AZURE_REPO_SSH:- $TEST_GITOPS_AZURE_REPO } $TEST_GITOPS_AZURE_REPO $AZURE_GITOPS
120
130
121
131
# Avoid messing with your real $HOME/.gitconfig when running locally
122
132
if [ -n " $LOCAL_SHELL_RUN " ]; then
0 commit comments