Update to use Java 5, remove annotation #1

Merged
Vulpovile merged 4 commits from feature/test into master 2025-01-11 19:53:08 +00:00
4 changed files with 14 additions and 5 deletions
Showing only changes of commit 293ffc604a - Show all commits

10
Jenkinsfile vendored
View File

@@ -36,4 +36,14 @@ pipeline {
}
}
}
post {
success {
// Report success to Gitea
giteaSetCommitStatus(context: 'success', description: 'Build Passed', targetUrl: env.BUILD_URL)
}
failure {
// Report failure to Gitea
giteaSetCommitStatus(context: 'failure', description: 'Build Failed', targetUrl: env.BUILD_URL)
}
}
}