Skip to content

Commit

Permalink
(chores) build: skip doc generation is now done at the Maven build level
Browse files Browse the repository at this point in the history
  • Loading branch information
orpiske committed May 18, 2023
1 parent 677bca0 commit 7d50cff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile.ppc64le
Expand Up @@ -71,7 +71,7 @@ pipeline {
}
steps {
// Skip modules camel-kudu and docs as these are not supported on ppc64le.
sh "./mvnw -U $MAVEN_PARAMS -Darchetype.test.skip -Dmaven.test.skip.exec=true clean install -pl '!docs'"
sh "./mvnw -U $MAVEN_PARAMS -Darchetype.test.skip -Dmaven.test.skip.exec=true clean install"
}
}

Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.s390x
Expand Up @@ -71,7 +71,7 @@ pipeline {
}
steps {
// Skip modules camel-kudu and docs as these are not supported on s390x.
sh "./mvnw -U $MAVEN_PARAMS -Darchetype.test.skip -Dmaven.test.skip.exec=true clean install -pl '!docs'"
sh "./mvnw -U $MAVEN_PARAMS -Darchetype.test.skip -Dmaven.test.skip.exec=true clean install"
}
}

Expand Down

0 comments on commit 7d50cff

Please sign in to comment.