Skip to content

Commit

Permalink
[#3207] fix(test): Trigger integration test with changes in module `i…
Browse files Browse the repository at this point in the history
…ntegration-test-common` (#3201)

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

Trigger integration test when there is a change in module
`integration-test-common`.

### Why are the changes needed?

We should start the integration test if there are changes in module
`integration-test-common`. however, CI
https://github.com/datastrato/gravitino/actions/runs/8872110159/job/24356012525?pr=3197
of PR #3197 can't start the
CI pipeline.

Fixed: #3207 

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

N/A.

### How was this patch tested?

CI passed.
  • Loading branch information
yuqi1129 authored and web-flow committed Apr 29, 2024
1 parent b7e5704 commit 52500a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/backend-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
- dev/**
- gradle/**
- integration-test/**
- integration-test-common/**
- meta/**
- server/**
- server-common/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* MiniGravitino is a mini Gravitino server for integration tests. It starts a Gravitino server in
* the same JVM process.
*/
public class MiniGravitino {
private static final Logger LOG = LoggerFactory.getLogger(MiniGravitino.class);
private MiniGravitinoContext context;
Expand Down

0 comments on commit 52500a7

Please sign in to comment.