Update bootstrap dependencies for Python projects
[oi-userland.git] / ci / user-build.groovy
blob2bf98b5ed82dd39ddb7032a1529e211ab99762e6
1 @Library("BuildLib") _
2 pipeline {
3 agent {
4 node {
5 label 'userland'
8 stages {
9 stage('Git Checkout') {
10 steps {
11 withSharedWs() {
12 git branch: 'oi/hipster', url: 'https://github.com/OpenIndiana/oi-userland.git'
16 stage('Gmake Setup') {
17 steps {
18 sh 'rm -f components/components.mk'
19 sh 'rm -f components/depends.mk'
20 withPublisher('openindiana.org', 'full') {
21 sh 'gmake setup'
25 stage('Gmake Publish') {
26 steps {
27 withPublisher('openindiana.org', 'full') {
28 sh 'gmake publish -k'