Skip to content

Commit

Permalink
Fixed from review
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Dec 6, 2024
1 parent 50e8afd commit eacd04b
Show file tree
Hide file tree
Showing 41 changed files with 16 additions and 122 deletions.
14 changes: 7 additions & 7 deletions aws-code-build/ci/buildspec.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion exaudfclient/base/exaudfclient.template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ echo "Changing to script directory $SCRIPT_DIR"
cd "$SCRIPT_DIR" || return 1
export LIBEXAUDFLIB_PATH="$SCRIPT_DIR/base/libexaudflib_complete.so"
export LIBPYEXADATAFRAME_DIR="$SCRIPT_DIR/base/python/python3"
export LD_LIBRARY_PATH="/opt/conda/cuda-compat/:$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH="/opt/conda/cuda-compat/:$LD_LIBRARY_PATH" #Temporary hack for the Cuda ML flavor(s)

This file was deleted.

This file was deleted.

76 changes: 0 additions & 76 deletions flavors/standard-Exasol-8-cuda-ml/flavor_customization/Dockerfile

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

**Remarks:** The packages are grouped by there main usage and their type.

- CondaDeps dependencies
- [Ubuntu packages](flavor_base/conda_deps/packages/apt_get_packages)
- UDFclient dependencies
- [Conda Packages](flavor_base/udfclient_deps/packages/conda_packages)
- [Conda Channels](flavor_base/udfclient_deps/packages/conda_channels)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ WORKDIR /exaudfclient/
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$MAMBA_ROOT_PREFIX/lib/
ENV CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:$MAMBA_ROOT_PREFIX/include/
ENV C_INCLUDE_PATH=$C_INCLUDE_PATH:$MAMBA_ROOT_PREFIX/include/
# We need to build with optimize here, because the debug build fails to run with a runtime linking error regarding protobuf
RUN ./build.sh --config no-tty -c dbg --config python --config test-binaries
RUN cp -r -L bazel-bin/* /exaudf

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

**Remarks:** The packages are grouped by there main usage and their type.

- CondaDeps dependencies
- [Ubuntu packages](flavor_base/conda_deps/packages/apt_get_packages)
- UDFclient dependencies
- [Conda Packages](flavor_base/udfclient_deps/packages/conda_packages)
- [Conda Channels](flavor_base/udfclient_deps/packages/conda_channels)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ WORKDIR /exaudfclient/
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$MAMBA_ROOT_PREFIX/lib/
ENV CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:$MAMBA_ROOT_PREFIX/include/
ENV C_INCLUDE_PATH=$C_INCLUDE_PATH:$MAMBA_ROOT_PREFIX/include/
# We need to build with optimize here, because the debug build fails to run with a runtime linking error regarding protobuf
RUN ./build.sh --config no-tty -c dbg --config python --config test-binaries
RUN cp -r -L bazel-bin/* /exaudf

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,23 +116,13 @@ def get_path_in_flavor(self):
return "flavor_base"


class AnalyzeFlavorCustomization(DockerFlavorAnalyzeImageTask):

def get_build_step(self) -> str:
return "flavor_customization"

def requires_tasks(self):
return {"flavor_base_deps": AnalyzeFlavorBaseDeps}


class AnalyzeFlavorTestBuildRun(DockerFlavorAnalyzeImageTask):

def get_build_step(self) -> str:
return "flavor_test_build_run"

def requires_tasks(self):
return {"flavor_customization": AnalyzeFlavorCustomization,
"base_test_build_run": AnalyzeBaseTestBuildRun}
return {"base_test_build_run": AnalyzeBaseTestBuildRun}

def get_path_in_flavor(self):
return "flavor_base"
Expand All @@ -143,8 +133,7 @@ def get_build_step(self) -> str:
return "release"

def requires_tasks(self):
return {"flavor_customization": AnalyzeFlavorCustomization,
"build_run": AnalyzeBuildRun,
return {"build_run": AnalyzeBuildRun,
"language_deps": AnalyzeLanguageDeps}

def get_path_in_flavor(self):
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
conda-forge
nvidia
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ default ignore = false

ignore {
input.PkgName == "linux-libc-dev"
regex.match("^kernel:", input.Title)
regex.match("^(kernel:|In the Linux kernel)", input.Title)
}

0 comments on commit eacd04b

Please sign in to comment.