diff options
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") } } } |