Skip to content

Commit

Permalink
publish p2 repository as top-level artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
haubi committed Feb 29, 2024
1 parent 24cad50 commit eacde7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ pipeline {
buildDiscarder(logRotator(numToKeepStr:'5'))
disableConcurrentBuilds(abortPrevious: true)
}
agent {
label 'basic'
}
agent any
tools {
maven 'apache-maven-latest'
jdk 'temurin-jdk17-latest'
Expand All @@ -15,12 +13,14 @@ pipeline {
stage('Build') {
steps {
sh """
set -xe
mvn clean verify
mv sites/org.eclipse.tea.repository/target/repository .
"""
}
post {
success {
archiveArtifacts artifacts: 'sites/org.eclipse.tea.repository/target/repository/'
archiveArtifacts artifacts: 'repository/'
}
always {
recordIssues tool: mavenConsole()
Expand Down

0 comments on commit eacde7c

Please sign in to comment.