Skip to content

Commit

Permalink
Collect all pydeephaven-ticking wheels into single directory (#5444)
Browse files Browse the repository at this point in the history
* Collect all pydeephaven-ticking wheels into single directory

This matches the expectations and conventions established by publish-ci.yml.

Fixes #5425

* remove condition
  • Loading branch information
devinrsmith authored and stanbrub committed May 3, 2024
1 parent 41a93da commit c544222
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion py/client-ticking/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,14 @@ def testPyClientTicking = project.tasks.register('testPyClientTicking') {
}
}

assemble.dependsOn cpythonBuilds.values()
def syncWheels = tasks.register('syncWheels', Sync) {
cpythonBuilds.values().each { cpythonBuild ->
from cpythonBuild.get().outputs
}
into layout.buildDirectory.dir('wheel')
}

assemble.dependsOn syncWheels

check.dependsOn testPyClientTicking

Expand Down

0 comments on commit c544222

Please sign in to comment.