jenkins: do not filter and sort the output of auto revision output

BugzID: 69785

Signed-off-by: Marc Mattmueller <marc.mattmueller@netmodule.com>
This commit is contained in:
Marc Mattmueller 2021-01-27 12:01:26 +01:00 committed by Gitea
parent 5359b74d30
commit 9c611146e3
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -265,6 +265,6 @@ def getTopUpstreamBuildNumber() {
def getAutoRevHashes() {
sh(script: "bash -c '. ./env.image-ostree && bitbake netmodule-linux-image-dev --runall=fetch'")
def revs = sh(returnStdout: true, script: "bash -c \". ./env.image-ostree && clear && buildhistory-collect-srcrevs | sort | uniq | grep -v \"#\"\"").trim()
def revs = sh(returnStdout: true, script: "bash -c \". ./env.image-ostree && clear && buildhistory-collect-srcrevs\"").trim()
return revs
}