Till Wegmüller
2023-09-30 34f00bee9b3c6a4a463c33e43d02e21a9c8712f2
Fix CI builder
and switch to incremental builds again

Signed-off-by: Till Wegmüller <toasterson@gmail.com>
1 files modified
14 ■■■■ changed files
ci/user-build.groovy 14 ●●●● patch | view | raw | blame | history
ci/user-build.groovy
@@ -17,18 +17,28 @@
            steps {
                sh 'rm -f components/components.mk'
                sh 'rm -f components/depends.mk'
                withPublisher('openindiana.org', 'full') {
                withPublisher('openindiana.org', 'incremental') {
                    sh 'gmake setup'
                }
            }
        }
        stage('Gmake Publish') {
            steps {
                withPublisher('openindiana.org', 'full') {
                withPublisher('openindiana.org', 'incremental') {
                    sh 'gmake publish -k'
                }
            }
        }
        stage('copy packages') {
            steps {
                pkgcopyEncumbered()
            }
        }
        stage('update system') {
            steps {
                update()
            }
        }
    }
}