Skip to content
Snippets Groups Projects
Verified Commit d435f502 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: pipeline

parent 7efed25f
No related branches found
No related tags found
No related merge requests found
Pipeline #9649 failed
......@@ -7,6 +7,7 @@ COPY .docker/wait-for-it.sh /wait-for-it.sh
WORKDIR /libcaosdb/
RUN mkdir build
WORKDIR /libcaosdb/build
RUN conan install . --profile ../conan.profile
RUN cmake ..
RUN cmake --build .
RUN cmake --install . --prefix /usr/local/
......@@ -20,6 +21,7 @@ RUN apt-get install -y openjdk-11-jdk-headless
# build and run tests
CMD mkdir build && \
cd build && \
conan install .. --profile /libcaosdb/conan.profile \
cmake -D CMAKE_PREFIX_PATH=/usr/local/ .. && \
cmake --build . && \
/wait-for-it.sh caosdb-server:10443 -t 500 -- \
......
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