Skip to content

Commit

Permalink
Bring back removed modules (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
imilinovic authored Nov 22, 2024
1 parent 368ab2f commit 2dc3916
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/reusable_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ jobs:
run: |
cd e2e
docker exec -i -u root ${{ env.MAGE_CONTAINER }} bash -c \
"cd /mage/e2e/ && python3 -m pytest . -k 'not cugraph and not node_classification and not link_prediction and not text ${{ inputs.build_scope == 'without ML' && 'and not tgn' || '' }}'"
"cd /mage/e2e/ && python3 -m pytest . -k 'not cugraph ${{ inputs.build_scope == 'without ML' && 'and not tgn and not node_classification and not link_prediction' || '' }}'"
- name: Run End-to-end correctness tests
if: inputs.arch != 'arm64'
Expand Down
8 changes: 1 addition & 7 deletions Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,6 @@ RUN git clone --recurse-submodules -b 0.9.x https://github.com/dmlc/dgl.git \
&& cd dgl && mkdir build && cd build && cmake .. \
&& make -j4 && cd ../python && python3 setup.py install

# Needs to be here and in prod phase
# Remove modules with issues
RUN rm /usr/lib/memgraph/query_modules/node_classification.py \
&& rm /usr/lib/memgraph/query_modules/link_prediction.py \
&& rm /usr/lib/memgraph/query_modules/text.so

USER memgraph
ENTRYPOINT ["/usr/lib/memgraph/memgraph"]
CMD [""]
Expand Down Expand Up @@ -103,7 +97,7 @@ RUN mv /mage/e2e /e2e/ \
&& export PATH="/usr/local/lib/python${PY_VERSION}:${PATH}" \
&& apt-get -y --purge autoremove clang git curl python3-pip python3-dev cmake build-essential \
&& apt-get clean


USER memgraph
ENTRYPOINT ["/usr/lib/memgraph/memgraph"]
Expand Down

0 comments on commit 2dc3916

Please sign in to comment.