Skip to content

Commit

Permalink
Fix bwc integ test by adding job-scheduler as dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Yizhe Liu <yizheliu@amazon.com>
  • Loading branch information
yizheliu-amazon committed Jan 29, 2025
1 parent 2184e79 commit 6a15240
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions qa/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,16 @@ if (Os.isFamily(Os.FAMILY_WINDOWS)) {

ext{
plugins = [provider(new Callable<RegularFile>(){
@Override
RegularFile call() throws Exception {
return new RegularFile() {
@Override
File getAsFile() {
return configurations.zipArchive.asFileTree.matching{include "**/opensearch-job-scheduler-${opensearch_build}.zip"}.getSingleFile()
}
}
}
}),provider(new Callable<RegularFile>(){
@Override
RegularFile call() throws Exception {
return new RegularFile() {
Expand Down

0 comments on commit 6a15240

Please sign in to comment.