Skip to content

Commit

Permalink
Test: Use exaslct dev version to add language_definitions.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Jan 7, 2025
1 parent ba7d830 commit ac5e8d8
Show file tree
Hide file tree
Showing 4 changed files with 367 additions and 338 deletions.
3 changes: 3 additions & 0 deletions flavors/standard-EXASOL-all/flavor_base/build_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ def requires_tasks(self):
"build_run": AnalyzeBuildRun,
"language_deps": AnalyzeLanguageDeps}

def get_language_definition(self) -> str:
return "language_definitions.json"

def get_path_in_flavor(self):
return "flavor_base"

Expand Down
33 changes: 33 additions & 0 deletions flavors/standard-EXASOL-all/flavor_base/language_definitions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

{
"schema_version": 1,
"language_definitions": [
{
"protocol": "localzmq+protobuf",
"aliases": ["JAVA"],
"language": "java",
"parameters": [],
"udf_client_path": {
"executable": "/exaudf/exaudfclient"
}
},
{
"protocol": "localzmq+protobuf",
"aliases": ["PYTHON3"],
"language": "python",
"parameters": [],
"udf_client_path": {
"executable": "/exaudf/exaudfclient"
}
},
{
"protocol": "localzmq+protobuf",
"aliases": ["R"],
"language": "r",
"parameters": [],
"udf_client_path": {
"executable": "/exaudf/exaudfclient"
}
}
]
}
Loading

0 comments on commit ac5e8d8

Please sign in to comment.