-
Notifications
You must be signed in to change notification settings - Fork 14
#1336: Changed Bazel module #586
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
tomuben
wants to merge
15
commits into
master
Choose a base branch
from
ci/change_blzmod
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
6b7263b
Test
tomuben 11640a2
Revert "Test"
tomuben 4362b31
Use exaudfclient_base as separate module
tomuben 4effd8c
Fixed check_bazel_tests.yml
tomuben 7e74208
Fixed exaudfclient/BUILD
tomuben f0e5729
Fixed shared library path
tomuben f1a4152
Use gen_rule to create headerfile with EXAUDFLIB constant
tomuben 8dec33d
Fixed path of exaudf lib path
tomuben 5eee64b
1. Updated Bazel in all flavors to 8.3.1
tomuben b868bb8
Fixed unit tests
tomuben 532e6bc
Fixed slow wrapper
tomuben 13c75db
Added workaround for java rules
tomuben c17cc2c
Added comment for workaround
tomuben 4edf61f
Fixed Maven for Bazel
tomuben c33f057
Updated Java
tomuben File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,32 @@ | ||
| module(name="exaudfclient", version = "1.0") | ||
|
|
||
| include("//base:base.MODULE.bazel") | ||
| bazel_dep(name = "exaudfclient_base", version = "1.0.0") | ||
| local_path_override(module_name="exaudfclient_base", path="base") | ||
| bazel_dep(name = "rules_jvm_external", version = "6.2") | ||
|
|
||
| numpy_local_repository = use_repo_rule("@exaudfclient_base//:python_repository.bzl", "numpy_local_repository") | ||
| numpy_local_repository(name = "numpy") | ||
|
|
||
| python_local_repository = use_repo_rule("@exaudfclient_base//:python_repository.bzl", "python_local_repository") | ||
| python_local_repository(name = "python3", python_version="python3") | ||
|
|
||
| zmq_local_repository = use_repo_rule("@exaudfclient_base//:zmq_repository.bzl", "zmq_local_repository") | ||
| zmq_local_repository(name = "zmq") | ||
|
|
||
| protobuf_local_repository = use_repo_rule("@exaudfclient_base//:protobuf_repository.bzl", "protobuf_local_repository") | ||
| protobuf_local_repository(name = "protobuf") | ||
|
|
||
| java_local_repository = use_repo_rule("@exaudfclient_base//:java_repository.bzl", "java_local_repository") | ||
| java_local_repository(name = "java") | ||
|
|
||
|
|
||
| maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven") | ||
| maven.install( | ||
| artifacts = [ | ||
| "com.exasol:udf-api-java:1.0.5", | ||
| ], | ||
| repositories = [ | ||
| "https://repo1.maven.org/maven2", | ||
| ], | ||
| ) | ||
| use_repo(maven, "maven") | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| build --lockfile_mode=off --copt='-std=c++17' --force_pic --action_env=PROTOBUF_BIN --action_env=PROTOBUF_LIBRARY_PREFIX --action_env=PROTOBUF_INCLUDE_PREFIX | ||
| build:benchmark --define benchmark=true | ||
| build:java --define java=true --action_env=JAVA_PREFIX | ||
| build:python --define python=true --action_env=NUMPY_PREFIX --action_env=PYTHON3_SYSPATH --action_env=PYTHON3_PREFIX --action_env=PYTHON3_VERSION | ||
| build:debug-build --sandbox_debug --config=verbose | ||
| build:no-symlinks --symlink_prefix=/ | ||
| build:asan --strip=never | ||
| build:asan --copt -fsanitize=address | ||
| build:asan --copt -DADDRESS_SANITIZER | ||
| build:asan --copt -O1 | ||
| build:asan --copt -g | ||
| build:asan --copt -fno-omit-frame-pointer | ||
| build:asan --linkopt -fsanitize=address | ||
| build:asan -c dbg | ||
| build:valgrind --copt -O1 | ||
| build:valgrind -c dbg | ||
| build:valgrind --copt -g | ||
| build:valgrind --strip=never | ||
| build:valgrind --copt -DVALGRIND_ACTIVE |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we maybe add a comment, why we use local overwrite here. And, that it later can be replaced by http override or git override, when repositories are split