Skip to content
Snippets Groups Projects
Commit 1c89aa8a authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

PIPELINE: Change /bin/sh to /bin/bash

For activating the conan venv in ~/.bashrc
parent 056895bf
No related branches found
No related tags found
2 merge requests!61Release 0.3.0,!57Fix deprecations + updates
Pipeline #55286 failed
Pipeline: caosdb-cppinttest

#55287

    FROM debian:bookworm
    # change to bash default for gitlab runner
    RUN echo "dash dash/sh boolean false" | debconf-set-selections
    RUN DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash
    RUN apt-get update
    RUN apt-get install -y cmake
    RUN apt-get install -y lcov
    ......@@ -22,9 +26,11 @@ RUN ./venv/bin/pip install -r doc-requirements.txt
    COPY requirements.txt build-requirements.txt
    RUN ./venv/bin/pip install -r build-requirements.txt
    RUN ./venv/bin/conan profile detect
    # add venv with conan to .bashrc
    RUN echo "source /venv/bin/activate" >> /root/.bashrc
    COPY . /libcaosdb/
    WORKDIR /libcaosdb
    RUN git rev-parse HEAD > libcaosdb_commit
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment