Skip to content

Commit 022c499

Browse files
authored
Temporarily diable the ARM build (#325)
1 parent 73d81ee commit 022c499

File tree

1 file changed

+0
-42
lines changed

1 file changed

+0
-42
lines changed

netci.groovy

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -99,45 +99,3 @@ def addPushJob(String project, String branch, String os, String configuration)
9999
}
100100
}
101101

102-
[true, false].each { isPR ->
103-
["Linux_ARM"].each { os->
104-
["Release", "Debug"].each { configuration ->
105-
106-
def shortJobName = "${os}_${configuration}";
107-
def contextString = "${os} ${configuration}";
108-
def triggerPhrase = "(?i).*test\\W+${contextString}.*";
109-
110-
def newJob = job(Utilities.getFullJobName(project, shortJobName, isPR)){
111-
steps{
112-
shell("git submodule update --init --recursive");
113-
shell("./init-tools.sh")
114-
if(os == "Linux_ARM"){
115-
shell("./arm-ci.sh arm ./build.sh /p:Platform=arm /p:Configuration=${configuration} ${loggingOptions}")
116-
}
117-
if(os == "Tizen"){
118-
shell("./arm-ci.sh armel ./build.sh /p:Platform=armel /p:Configuration=${configuration} ${loggingOptions}")
119-
}
120-
}
121-
}
122-
123-
Utilities.setMachineAffinity(newJob, 'Ubuntu', 'arm-cross-latest');
124-
125-
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}");
126-
if(isPR){
127-
//We run Tizen Release and Ubuntu ARM Release
128-
if(configuration == "Release"){
129-
Utilities.addGithubPRTriggerForBranch(newJob, branch, contextString);
130-
}
131-
else{
132-
Utilities.addGithubPRTriggerForBranch(newJob, branch, contextString, triggerPhrase);
133-
}
134-
}
135-
else{
136-
Utilities.addGithubPushTrigger(newJob);
137-
}
138-
139-
}
140-
}
141-
}
142-
143-

0 commit comments

Comments
 (0)