dustin
/
jenkinsagent
Archived
1
0
Fork 0

Compare commits

..

1 Commits

Author SHA1 Message Date
Dustin 2bbfe3e2d1 ci: Begin CI pipeline 2022-03-15 20:58:50 -05:00
2 changed files with 12 additions and 0 deletions

View File

@ -9,6 +9,7 @@ RUN dnf install -y \
gcc \
make \
ncurses-devel \
openssh-clients \
patch \
perl-ExtUtils-MakeMaker \
perl-FindBin \

11
ci/Jenkinsfile vendored
View File

@ -14,6 +14,12 @@ pipeline {
pollSCM ''
}
parameters {
booleanParam \
name: 'Clean',
description: 'Clean the workspace and perform a full rebuild'
}
environment {
BUILDROOT_SRC = "${env.WORKSPACE}/buildroot"
}
@ -21,6 +27,11 @@ pipeline {
stages {
stage('Prepare') {
steps {
script {
if (params.Clean) {
sh 'rm -rf _build'
}
}
checkout poll: false, scm: [
$class: 'GitSCM',
branches: [[name: '2022.02.x']],