Skip to content

Commit

Permalink
kola-aws: also run on m4.large
Browse files Browse the repository at this point in the history
Likely this should live in a `fcosKolaAws` wrapper instead, but at least
for the short-term it's trivial to get coverage for Xen and Nitro types
so let's do that.

This would've caught
coreos/fedora-coreos-tracker#997.

Closes: #414
  • Loading branch information
jlebon committed Oct 19, 2021
1 parent bd46bb5 commit e5c1706
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions jobs/kola-aws.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,23 @@ try { timeout(time: 90, unit: 'MINUTES') {
--aws-credentials-file=\${AWS_FCOS_KOLA_BOT_CONFIG}/config \
--aws-region=us-east-1""")

if (params.ARCH == "x86_64") {
stage('Xen') {
def tests = params.KOLA_TESTS
if (tests == "") {
tests = "basic"
}
fcosKola(cosaDir: env.WORKSPACE,
build: params.VERSION, arch: params.ARCH,
extraArgs: tests,
skipUpgrade: true,
skipBasicScenarios: true,
platformArgs: """-p=aws \
--aws-credentials-file=\${AWS_FCOS_KOLA_BOT_CONFIG}/config \
--aws-region=us-east-1 --aws-type=m4.large""")
}
}

currentBuild.result = 'SUCCESS'
}
}} catch (e) {
Expand Down

0 comments on commit e5c1706

Please sign in to comment.