Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel_ROCM
Commits
cc1f733d
Unverified
Commit
cc1f733d
authored
Mar 22, 2024
by
Illia Silin
Committed by
GitHub
Mar 22, 2024
Browse files
allow the CI to pass even if can't connect to db (#1214)
parent
2ae16e90
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
Jenkinsfile
Jenkinsfile
+6
-3
No files found.
Jenkinsfile
View file @
cc1f733d
...
@@ -619,6 +619,8 @@ def process_results(Map conf=[:]){
...
@@ -619,6 +619,8 @@ def process_results(Map conf=[:]){
dir
(
"script"
){
dir
(
"script"
){
if
(
params
.
RUN_FULL_QA
){
if
(
params
.
RUN_FULL_QA
){
// unstash perf files to master
// unstash perf files to master
unstash
"ckprofiler_0.2.0_amd64.deb"
sh
"sshpass -p ${env.ck_deb_pw} scp -o StrictHostKeyChecking=no ckprofiler_0.2.0_amd64.deb ${env.ck_deb_user}@${env.ck_deb_ip}:/var/www/html/composable_kernel/"
unstash
"perf_gemm.log"
unstash
"perf_gemm.log"
unstash
"perf_resnet50_N256.log"
unstash
"perf_resnet50_N256.log"
unstash
"perf_resnet50_N4.log"
unstash
"perf_resnet50_N4.log"
...
@@ -632,8 +634,6 @@ def process_results(Map conf=[:]){
...
@@ -632,8 +634,6 @@ def process_results(Map conf=[:]){
unstash
"perf_onnx_gemm.log"
unstash
"perf_onnx_gemm.log"
unstash
"perf_mixed_gemm.log"
unstash
"perf_mixed_gemm.log"
sh
"./process_qa_data.sh"
sh
"./process_qa_data.sh"
unstash
"ckprofiler_0.2.0_amd64.deb"
sh
"sshpass -p ${env.ck_deb_pw} scp -o StrictHostKeyChecking=no ckprofiler_0.2.0_amd64.deb ${env.ck_deb_user}@${env.ck_deb_ip}:/var/www/html/composable_kernel/"
}
}
else
{
else
{
// unstash perf files to master
// unstash perf files to master
...
@@ -645,10 +645,13 @@ def process_results(Map conf=[:]){
...
@@ -645,10 +645,13 @@ def process_results(Map conf=[:]){
}
}
}
}
catch
(
e
){
catch
(
e
){
echo
"
t
hrowing error exception while processing performance test results"
echo
"
T
hrowing error exception while processing performance test results"
echo
'Exception occurred: '
+
e
.
toString
()
echo
'Exception occurred: '
+
e
.
toString
()
throw
e
throw
e
}
}
finally
{
echo
"Finished processing performance test results"
}
}
}
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment