Skip to content

Commit

Permalink
Merge pull request coreos#531 from gursewak1997/fcp-530
Browse files Browse the repository at this point in the history
kola-aws.Jenkinsfile: add testing for new aws c7 instances
  • Loading branch information
gursewak1997 authored May 30, 2022
2 parents 84dc8ea + 118d037 commit 7cc9bab
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions jobs/kola-aws.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,20 @@ try { timeout(time: 90, unit: 'MINUTES') {
--aws-credentials-file=\${AWS_FCOS_KOLA_BOT_CONFIG}/config \
--aws-region=us-east-1 --aws-type=m6i.large""")
}
} else if (params.ARCH == "aarch64") {
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,
marker: "kola-c7g",
platformArgs: """-p=aws \
--aws-credentials-file=\${AWS_FCOS_KOLA_BOT_CONFIG}/config \
--aws-region=us-east-1 --aws-type=c7g.xlarge""")
}

currentBuild.result = 'SUCCESS'
Expand Down

0 comments on commit 7cc9bab

Please sign in to comment.