Skip to content
Snippets Groups Projects
Select Git revision
  • a952a3a023eff7428b95ca5f975ef342deb42e59
  • main default
  • new protected
3 results

pyproject.toml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 380 B
    ARG CPPLIB_REGISTRY_IMAGE
    FROM $CPPLIB_REGISTRY_IMAGE
    
    COPY .docker/wait-for-it.sh /wait-for-it.sh
    
    # build and install caosdb-cpplib
    WORKDIR /libcaosdb/
    RUN mkdir build
    WORKDIR /libcaosdb/build
    RUN cmake ..
    RUN cmake --build .
    RUN cmake --install . --prefix /usr/local/
    
    
    WORKDIR /cppinttest/
    CMD /wait-for-it.sh caosdb-server:10443 -t 500 -- \
        # ... and run tests
        ctest