Skip to content

Commit

Permalink
ci: Build targets
Browse files Browse the repository at this point in the history
  • Loading branch information
AiyionPrime committed Jun 30, 2024
1 parent 9a3304e commit a56b1c3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,17 @@ pipeline {
}
}
}
stage("Build gluon target ${params.GLUON_TARGET}") {
when {
expression {
return params.GLUON_TARGET != 'ALL'
}
}
steps {
dir('gluon') {
sh "make GLUON_TARGET=${params.GLUON_TARGET}"
}
}
}
}
}

0 comments on commit a56b1c3

Please sign in to comment.