Moved linting stage to bioconda specific publishing stages
Some checks failed
autoBIGS.engine-bioconda/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2025-02-20 17:59:02 +00:00
parent 077715509d
commit 2538cf2687

16
Jenkinsfile vendored
View File

@ -31,13 +31,6 @@ pipeline {
sh 'cp -r autobigs-engine/* auto-updated-bioconda-recipes/recipes/autobigs-engine/.' sh 'cp -r autobigs-engine/* auto-updated-bioconda-recipes/recipes/autobigs-engine/.'
} }
} }
stage("lint") {
steps {
dir('auto-updated-bioconda-recipes') {
sh 'bioconda-utils lint recipes/ --packages autobigs-engine'
}
}
}
stage("build") { stage("build") {
steps { steps {
dir('auto-updated-bioconda-recipes') { dir('auto-updated-bioconda-recipes') {
@ -52,7 +45,12 @@ pipeline {
archiveArtifacts artifacts: './conda-dist/**/*.conda', followSymlinks: false archiveArtifacts artifacts: './conda-dist/**/*.conda', followSymlinks: false
} }
} }
stage("commit") { stage("bioconda") {
stages {
stage('lint') {
sh 'bioconda-utils lint recipes/ --packages autobigs-engine'
}
stage('commit') {
environment { environment {
TOKEN = credentials('github.com') TOKEN = credentials('github.com')
} }
@ -63,6 +61,8 @@ pipeline {
} }
} }
} }
}
}
stage('git.reslate.systems') { stage('git.reslate.systems') {
environment { environment {
AUTH = credentials('git.reslate.systems') AUTH = credentials('git.reslate.systems')