dustin
/
jenkinsagent
Archived
1
0
Fork 0

Compare commits

..

1 Commits

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

18
ci/Jenkinsfile vendored
View File

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