Skip to content

Commit

Permalink
[#5473] improvement(CI): Change CI build file to add bundles files in…
Browse files Browse the repository at this point in the history
…to the build task. (#5485)

### What changes were proposed in this pull request?


Add the bundles and their sub-modules to the changes listening list. 

### Why are the changes needed?

Bundles are newly added modules and should be added to the changes
listening list.

Fix: #5473 

### Does this PR introduce _any_ user-facing change?

N/A

### How was this patch tested?

CI.

Co-authored-by: Qi Yu <yuqi@datastrato.com>
  • Loading branch information
github-actions[bot] and yuqi1129 authored Nov 6, 2024
1 parent 81b50c5 commit cccda18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
- core/**
- dev/**
- docs/open-api/**
- bundles/**
- docs/build.gradle.kts
- flink-connector/**
- gradle/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ public FileSystem getFileSystem(Path path, Map<String, String> config) throws IO
return S3AFileSystem.newInstance(path.toUri(), configuration);
}

/**
* Get the scheme of the FileSystem. Attention, for S3 the schema is "s3a", not "s3". Users should
* use "s3a://..." to access S3.
*/
@Override
public String scheme() {
return "s3a";
Expand Down

0 comments on commit cccda18

Please sign in to comment.