Commit 220c1fc8 authored by Elisabetta Giani's avatar Elisabetta Giani
Browse files

Test csp-lmc-mid image creation

parent ec41a9b1
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ services:
# TODO: add file for LOW project
include:
  - local: csp-lmc-common/.gitlab-ci.yml
  - local: csp-lmc-mid/.gitlab-ci.yml

# cache is used to specify a list of files and directories which should be cached between jobs. You can only use paths that are within the project workspace.
# If cache is defined outside the scope of jobs, it means it is set globally and all jobs will use that definition
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ RUN ipython profile create
#RUN DEBIAN_FRONTEND=noninteractive pip3 install https://nexus.engageska-portugal.pt/repository/pypi/packages/ska-logging/0.2.1/ska_logging-0.2.1.tar.gz
#RUN DEBIAN_FRONTEND=noninteractive pip3 install https://nexus.engageska-portugal.pt/repository/pypi/packages/lmcbaseclasses/0.4.1+14ff4f1b/lmcbaseclasses-0.4.1+14ff4f1b.tar.gz
#RUN DEBIAN_FRONTEND=noninteractive pip3 install https://nexus.engageska-portugal.pt/repository/pypi/packages/csp-lmc-common/0.3.1/csp-lmc-common-0.3.1.tar.gz
ENV PATH=/home/tango/.local/bin:$PATH
RUN python3 -m pip install -e . --extra-index-url https://nexus.engageska-portugal.pt/repository/pypi/simple

CMD ["/venv/bin/python","/app/csp_lmc_mid/MidCspMaster.py"]
+2 −2
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ setup(
        description=INFO['description'],
        author=INFO['author'],
        author_email=INFO['author_email'],
        packages=find_packages(),
        packages=find_packages(where="csp-lmc-mid"),
        license=INFO['license'],
        url=INFO['url'],
        long_description=long_description,
@@ -38,7 +38,7 @@ setup(
        install_requires = [
            'pytango >=9.3.1',
            'future',
            'csp-lmc-common >=0.4.0'
            'csp-lmc-common'
        ],
        setup_requires=[
            'pytest-runner',