Skip to content

Commit

Permalink
sanitize 6.29.tikv branch (#280)
Browse files Browse the repository at this point in the history
* Track 6.29.tikv branch in GitHub action
* Disable unit test PurgeInfoLogs

Signed-off-by: tabokie <[email protected]>
  • Loading branch information
tabokie authored May 10, 2022
1 parent 79f08d7 commit bc1f255
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/sanity_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

- name: Fetch from upstream
run: |
git remote add upstream https://github.com/facebook/rocksdb.git && git fetch upstream
git remote add upstream https://github.com/tikv/rocksdb.git && git fetch upstream
- name: Where am I
run: |
Expand All @@ -36,6 +36,8 @@ jobs:

- name: Check format
run: VERBOSE_CHECK=1 make check-format
env:
FORMAT_UPSTREAM: upstream/6.29.tikv

- name: Compare buckify output
run: make check-buck-targets
Expand Down
3 changes: 2 additions & 1 deletion db/db_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2519,7 +2519,8 @@ TEST_F(DBTest, GetLiveBlobFiles) {
}
#endif

TEST_F(DBTest, PurgeInfoLogs) {
// Fail under arm bulld.
TEST_F(DBTest, DISABLED_PurgeInfoLogs) {
Options options = CurrentOptions();
options.keep_log_file_num = 5;
options.create_if_missing = true;
Expand Down

0 comments on commit bc1f255

Please sign in to comment.