Andreas Wacknitz
2024-03-31 97a780a15002cc79b83dca6ceb54a7411df3f799
ci/user-build.groovy
@@ -1,4 +1,29 @@
import jenkins.model.Jenkins
@Library("BuildLib") _
/**
 * Gets the commit hash from a Jenkins build object, if any
 */
@NonCPS
def commitHashForBuild( build ) {
  def scmAction = build?.actions.find { action -> action instanceof jenkins.scm.api.SCMRevisionAction }
  return scmAction?.revision?.hash
}
@NonCPS
String getChangedFilesList() {
    changedFiles = []
    for (changeLogSet in currentBuild.changeSets) {
        for (entry in changeLogSet.getItems()) { // for each commit in the detected changes
            for (file in entry.getAffectedFiles()) {
                changedFiles.add(file.getPath()) // add changed file to list
            }
        }
    }
    return changedFiles
}
pipeline {
    agent {
        node {
@@ -6,6 +31,11 @@
        }
    }
    stages {
        stage('Ensure is ready to build') {
            steps {
                sh 'pfexec /usr/sbin/mountall -F nfs || exit 0'
            }
        }
        stage('Git Checkout') {
            steps {
                withSharedWs() {
@@ -17,7 +47,7 @@
            steps {
                sh 'rm -f components/components.mk'
                sh 'rm -f components/depends.mk'
                withPublisher('openindiana.org', 'full') {
                withPublisher('openindiana.org', 'incremental') {
                    sh 'gmake setup'
                }
            }
@@ -25,10 +55,19 @@
        stage('Gmake Publish') {
            steps {
                withPublisher('openindiana.org', 'incremental') {
                    sh 'gmake publish -k'
                    script {
                        writeFile file: 'changed_files.txt', text: getChangedFilesList().join("\n")
                    }
                    sh './tools/jenkinshelper-main.ksh -s build_changed'
                }
            }
        }
        stage('update system') {
            steps {
                update()
                sh '/opt/local/bin/cleanup_bootenvs.sh'
            }
        }
    }
}