blob: b5252a423b07f6b51199e1e280285d7a5ffd1794 (
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
|
#!/usr/bin/env groovy
pipeline {
agent { node 'sys-fedora-x64' }
stages {
stage ('Prepare') {
steps {
dir ('edk2') {
git 'git://github.com/tianocore/edk2.git'
}
}
}
stage ('Build') {
steps {
dir ('edk2') {
sh '''
source ./edksetup.sh
build -t GCC5 -n $(nproc) -a X64 -p OvmfPkg/OvmfPkgX64.dsc
'''
}
}
}
}
}
|