Skip to content

Commit

Permalink
Workaround no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
thecatcore committed Sep 28, 2024
1 parent 9c25601 commit 1b31048
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ def main():
if mainCommand == "publishToLocalAndTest":
commandList = [
[GRADLE_PREFIX + " publishToMavenLocal unifyMappings", True],
["cd test-mod && " + GRADLE_PREFIX + " build", False],
["cd test-mod && " + GRADLE_PREFIX + " genSources", False]
["cd test-mod && " + GRADLE_PREFIX + " build genSources", False]
]
elif mainCommand == "publish":
commandList = [
Expand All @@ -29,8 +28,7 @@ def main():
commandList = [
[GRADLE_PREFIX + " build javadocJar checkMappings mapNamedJar unifyMappings", True],
[GRADLE_PREFIX + " publishToMavenLocal unifyMappings", True],
["cd test-mod && " + GRADLE_PREFIX + " build", False],
["cd test-mod && " + GRADLE_PREFIX + " genSources", False]
["cd test-mod && " + GRADLE_PREFIX + " build genSources", False]
]

failedVersions = []
Expand Down

0 comments on commit 1b31048

Please sign in to comment.