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 Initramfs') {
steps {
sh '. ci/build-initramfs.sh'
stage('Build') {
parallel {
stage('Build Initramfs') {
steps {
sh '. ci/build-initramfs.sh'
}
}
}
stage('Build Rootfs') {
steps {
sh '. ci/build-rootfs.sh'
stage('Build Rootfs') {
steps {
sh '. ci/build-rootfs.sh'
}
}
}
}