3
0

add step to push to gitea

This commit is contained in:
Arne Teuke
2025-11-26 20:15:07 +01:00
parent 792b7e9648
commit dc5f244579

17
Jenkinsfile vendored
View File

@@ -91,19 +91,14 @@ pipeline {
git config user.name "Jenkins Server" git config user.name "Jenkins Server"
git config user.email jenkins@confdroid.com git config user.email jenkins@confdroid.com
git add -A && git commit -am "Recommit for updates in build $BUILD_NUMBER" || echo "No changes to commit" git add -A && git commit -am "Recommit for updates in build $BUILD_NUMBER" || echo "No changes to commit"
git push -o merge_request.create \ git push origin HEAD:master
-o merge_request.target=master \
-o merge_request.title="Auto-merge for build $BUILD_NUMBER" \
-o merge_request.description="Automated changes from Jenkins build $BUILD_NUMBER" \
-o merge_request.merge_when_pipeline_succeeds=true \
origin jenkins-build-$BUILD_NUMBER
''' '''
} }
} }
} }
stage('Mirror to Gitea') { stage('Mirror to Gitea') {
when { branch 'master' }
steps { steps {
withCredentials([usernamePassword( withCredentials([usernamePassword(
credentialsId: 'Jenkins-gitea', credentialsId: 'Jenkins-gitea',
@@ -113,16 +108,14 @@ pipeline {
// Checkout from GitLab (already done implicitly) // Checkout from GitLab (already done implicitly)
sh ''' sh '''
git remote remove gitea || true git remote remove gitea || true
git remote add gitea https://gitea.confdroid.com/confdroid/puppet_cd.git git checkout master
git remote add master https://gitea.confdroid.com/confdroid/puppet_cd.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 gitea refs/heads/master:refs/heads/master --tags git push origin HEAD:master --tags
''' '''
} }
} }
} }
/*
when { branch 'master' } // Only on main branch to avoid noise
*/
} }
} }
} }