Skip to content

Commit

Permalink
PSMDB do not test tarballs on ARM (#2488)
Browse files Browse the repository at this point in the history
  • Loading branch information
olexandr-havryliak authored Feb 7, 2024
1 parent 91d49ea commit 1d2d423
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions psmdb/psmdb-tarball-functional.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ pipeline {
"""
script {
def PSMDB_VER = sh(returnStdout: true, script: "cat VERSION").trim()
moleculeParallelTest(pdmdbOperatingSystems("${PSMDB_VER}"), moleculeDir)
def os = pdmdbOperatingSystems("${PSMDB_VER}")
os.removeAll { it.contains('-arm') }
moleculeParallelTest(os, moleculeDir)
}
}
}
Expand All @@ -67,7 +69,9 @@ pipeline {
junit testResults: "**/*-report.xml", keepLongStdio: true
script {
def PSMDB_VER = sh(returnStdout: true, script: "cat VERSION").trim()
moleculeParallelPostDestroy(pdmdbOperatingSystems("${PSMDB_VER}"), moleculeDir)
def os = pdmdbOperatingSystems("${PSMDB_VER}")
os.removeAll { it.contains('-arm') }
moleculeParallelPostDestroy(os, moleculeDir)
}
}
}
Expand Down

0 comments on commit 1d2d423

Please sign in to comment.