Skip to content

Commit 01eef22

Browse files
committed
Fixing project being build twice in CI
1 parent e22ee4d commit 01eef22

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
### Fixed
1616
- Fixed `MappingEntryies` not getting processed by adding `Getter` methods for record fields [#1084](https://github.com/ie3-institute/PowerSystemDataModel/issues/1084)
1717
- Fixed "depth of discharge" in documentation [#872](https://github.com/ie3-institute/PowerSystemDataModel/issues/872)
18+
- Fixed project beiing build twice in CI [#994](https://github.com/ie3-institute/PowerSystemDataModel/issues/994)
1819

1920
### Changed
2021
- Improvements to the search for corner points in `IdCoordinateSource` [#1016](https://github.com/ie3-institute/PowerSystemDataModel/issues/1016)

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ node {
113113
gradle('--refresh-dependencies clean spotlessCheck pmdMain pmdTest spotbugsMain ' +
114114
'spotbugsTest test jacocoTestReport jacocoTestCoverageVerification', projectName)
115115

116-
sh(script: """set +x && cd $projectName""" + ''' set +x; ./gradlew clean javadoc''', returnStdout: true)
116+
sh(script: """set +x && cd $projectName""" + ''' set +x; ./gradlew javadoc''', returnStdout: true)
117117
}
118118

119119
// sonarqube analysis
@@ -156,7 +156,7 @@ node {
156156
*/
157157
sh(
158158
script: """set +x && cd $projectName""" +
159-
''' set +x; ./gradlew clean javadoc''',
159+
''' set +x; ./gradlew javadoc''',
160160
returnStdout: true
161161
)
162162

0 commit comments

Comments
 (0)