blob: b36e2cc4977d3932e82a4a74144169da450091ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#!/usr/bin/env groovy
pipeline {
agent {
node 'sys-fedora-x64'
}
triggers {
pollSCM('H * * * *')
}
stages {
stage ('Prepare') {
steps {
dir ('edk2') {
checkout([
$class: 'GitSCM',
branches: [
[ name: '*/master' ]
],
extensions: [
[
$class: 'CloneOption',
timeout: 60
],[
$class: 'SubmoduleOption',
trackingSubmodules: true,
timeout: 60
]
],
userRemoteConfigs: [
[ url: 'git://github.com/tianocore/edk2' ]
]])
}
}
}
stage ('Build') {
steps {
dir ('edk2') {
sh '''
unset WORKSPACE
source ./edksetup.sh
make -C BaseTools
build -t GCC5 -n $(nproc) -a X64 -p OvmfPkg/OvmfPkgX64.dsc
'''
}
}
}
stage ('Test pc') {
steps {
sh '''
scripts/qemu-boot-kernel -M pc \
-bios Build/OvmfX64/*/FV/OVMF.fd
'''
}
}
}
}
|