OP#618 add ssh-agent to last stage

This commit is contained in:
2026-06-13 14:52:28 +02:00
parent 04946ab23d
commit edd2ed3524

32
Jenkinsfile vendored
View File

@@ -98,29 +98,31 @@ pipeline {
} }
} }
stage('Mirror to Gitea') { stage('Mirror to Gitea') {
steps { steps {
sshagent(['edd05eb6-26b5-4c7b-a5cc-ea2ab899f4fa']) {
withCredentials([usernamePassword( withCredentials([usernamePassword(
credentialsId: 'Jenkins-gitea', credentialsId: 'Jenkins-gitea',
usernameVariable: 'GITEA_USER', usernameVariable: 'GITEA_USER',
passwordVariable: 'GITEA_TOKEN')]) { passwordVariable: 'GITEA_TOKEN')]) {
script { script {
// Checkout from GitLab (already done implicitly) // Checkout from GitLab (already done implicitly)
sh ''' sh '''
git checkout master git checkout master
git pull origin master git pull origin master
git branch -D development git branch -D development
git branch -D jenkins-build-$BUILD_NUMBER git branch -D jenkins-build-$BUILD_NUMBER
git rm -f Jenkinsfile git rm -f Jenkinsfile
git rm -r --cached .vscode || echo "No .vscode to remove from git" git rm -r --cached .vscode || echo "No .vscode to remove from git"
git commit --amend --no-edit --allow-empty git commit --amend --no-edit --allow-empty
git remote add master https://sourcecode.confdroid.com/confdroid/confdroid_puppet.git git remote add master https://sourcecode.confdroid.com/confdroid/confdroid_puppet.git
git -c credential.helper="!f() { echo username=${GITEA_USER}; echo password=${GITEA_TOKEN}; }; f" \ git -c credential.helper="!f() { echo username=${GITEA_USER}; echo password=${GITEA_TOKEN}; }; f" \
push master --mirror push master --mirror
''' '''
}
} }
} }
}
}
} }
} }
} }