diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2018-01-31 16:23:17 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-01-31 16:23:17 +0100 |
commit | de9be6318bae1868f7c10a22b35eff2a7017d367 (patch) | |
tree | 8d71430326c7ea9bcbec60cc6a08687f14e8a553 /jenkinsfile.edk2 | |
parent | cc64e9cc058229554b94c5363360844758b7da61 (diff) | |
download | jenkinsfiles-de9be6318bae1868f7c10a22b35eff2a7017d367.tar.gz |
some renaming
Diffstat (limited to 'jenkinsfile.edk2')
-rw-r--r-- | jenkinsfile.edk2 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/jenkinsfile.edk2 b/jenkinsfile.edk2 index c3604a8..4741d7e 100644 --- a/jenkinsfile.edk2 +++ b/jenkinsfile.edk2 @@ -75,39 +75,39 @@ pipeline { } } - stage ('Build default') { + stage ('Build x64') { steps { - BuildX64("default", ""); + BuildX64("x64", ""); } } stage ('Test pc') { steps { - TestSimpleX64("default", "-M pc") + TestSimpleX64("x64", "-M pc") } } stage ('Test q35') { steps { - TestSimpleX64("default", "-M q35") + TestSimpleX64("x64", "-M q35") } } stage ('Test q35 smp4 pflash') { steps { - TestFlashX64("default", "-M q35 -smp 4") + TestFlashX64("x64", "-M q35 -smp 4") } } - stage ('Build smm') { + stage ('Build x64+smm') { steps { - BuildX64("smm", "-D SECURE_BOOT_ENABLE -D SMM_REQUIRE"); + BuildX64("x64+smm", "-D SECURE_BOOT_ENABLE -D SMM_REQUIRE"); } } stage ('Test q35 smp4 pflash smm') { steps { - TestFlashX64("smm", "-M q35,smm=on -global ICH9-LPC.disable_s3=1 -smp 4") + TestFlashX64("x64+smm", "-M q35,smm=on -global ICH9-LPC.disable_s3=1 -smp 4") } } } |