dustin
/
jenkinsagent
Archived
1
0
Fork 0

Compare commits

..

1 Commits

Author SHA1 Message Date
Dustin 574c346809 ci: Begin CI pipeline 2022-03-15 15:57:40 -05:00
1 changed files with 10 additions and 8 deletions

18
ci/Jenkinsfile vendored
View File

@ -27,16 +27,18 @@ pipeline {
} }
} }
parallel { stage('Build') {
stage('Build Initramfs') { parallel {
steps { stage('Build Initramfs') {
sh '. ci/build-initramfs.sh' steps {
sh '. ci/build-initramfs.sh'
}
} }
}
stage('Build Rootfs') { stage('Build Rootfs') {
steps { steps {
sh '. ci/build-rootfs.sh' sh '. ci/build-rootfs.sh'
}
} }
} }
} }