Skip to content

Commit

Permalink
ignore error
Browse files Browse the repository at this point in the history
  • Loading branch information
leiyanfei committed Mar 13, 2024
1 parent 30b07ce commit 25ef632
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-jobs-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
which java && java -version
which javac && javac -version
- name: Build RocksDBJava Static Library
run: scl enable devtoolset-7 'make V=1 J=8 -j8 rocksdbjavastatic'
run: scl enable devtoolset-7 'CXXFLAGS="-Wno-error=shadow" make V=1 J=8 -j8 rocksdbjavastatic'
# NOTE: post-steps skipped because of compatibility issues with docker image
#
# # ========================= MacOS build only ======================== #
Expand Down
2 changes: 1 addition & 1 deletion env/flink/jni_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// COPYING file in the root directory) and Apache 2.0 License
// (found in the LICENSE.Apache file in the root directory).

#include <jni.h>
#include "jni.h"
#include "rocksdb/status.h"

namespace ROCKSDB_NAMESPACE {
Expand Down
2 changes: 1 addition & 1 deletion env/flink/jvm_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <cstddef>
#include <string>

#include <jni.h>
#include "jni.h"
#include "rocksdb/env.h"

namespace ROCKSDB_NAMESPACE {
Expand Down

0 comments on commit 25ef632

Please sign in to comment.