From de9be6318bae1868f7c10a22b35eff2a7017d367 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Wed, 31 Jan 2018 16:23:17 +0100 Subject: some renaming --- jenkinsfile.edk2 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'jenkinsfile.edk2') 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") } } } -- cgit