Skip to content

Commit

Permalink
Fixes related to content repository removal (#415)
Browse files Browse the repository at this point in the history
Previous PR#409 has changed the CD flow, however, missed changes for CI flow.
This patch fixes the CI flow by updating maven commands that prevent interaction
with the content repository.

Fixes openshiftio/openshift.io#3895
Related PR #409
  • Loading branch information
Hrishikesh Shinde authored and sthaha committed Aug 7, 2018
1 parent 71708e0 commit b72f826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/mavenCI.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def call(body) {
stage('Build + Unit test') {
// set a unique temp version so we can download artifacts from nexus and run acceptance tests
sh "mvn -U versions:set -DnewVersion=${version}"
sh "mvn clean -B -e -U deploy -Dmaven.test.skip=${skipTests} -P openshift"
sh "mvn clean -B -e -U install -Dmaven.test.skip=${skipTests} -P openshift"
}

def s2iMode = utils.supportsOpenShiftS2I()
Expand Down

0 comments on commit b72f826

Please sign in to comment.