diff --git a/Jenkinsfile b/Jenkinsfile index cac8134..2340d76 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,9 +15,9 @@ pipeline { script { withCredentials([ usernamePassword([ - credentialsId: 'forge-jenkins', - usernameVariable: 'GIT_USERNAME', - passwordVariable: 'GIT_PASSWORD' + credentialsId: 'forge-jenkins', + usernameVariable: 'GIT_USERNAME', + passwordVariable: 'GIT_PASSWORD' ]) ]) { sh ''' @@ -43,20 +43,21 @@ pipeline { script { withCredentials([ usernamePassword([ - credentialsId: 'forge-jenkins', - usernameVariable: 'GITEA_RELEASE_USERNAME', - passwordVariable: 'GITEA_RELEASE_PASSWORD' + credentialsId: 'forge-jenkins', + usernameVariable: 'GITEA_RELEASE_USERNAME', + passwordVariable: 'GITEA_RELEASE_PASSWORD' ]) ]) { sh 'make gitea-release' } def currentVersion = sh(returnStdout: true, script: 'make full-version').trim() - build( - job: "../emissary-firmware/${env.GIT_BRANCH}", - parameters: [ - [$class: 'StringParameterValue', name: 'emissaryRelease', value: currentVersion] - ] - ) + sh 'git status' + // build( + // job: "../emissary-firmware/${env.GIT_BRANCH}", + // parameters: [ + // [$class: 'StringParameterValue', name: 'emissaryRelease', value: currentVersion] + // ] + // ) } } }