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

WIP: pipeline

parent 0ba98685
No related branches found
No related tags found
No related merge requests found
Pipeline #8441 failed
......@@ -18,16 +18,16 @@ RUN rm -rf .git
RUN apt-get install -y openjdk-11-jdk-headless
ENV CPPLIB_VERSION=$CPPLIB_VERSION
RUN echo $CPPLIB_VERSION
ENV ENV_CPPLIB_VERSION=$CPPLIB_VERSION
RUN echo $ENV_CPPLIB_VERSION
# build and run tests
CMD ls -la && \
ls -la /usr/local/lib/ && \
ls -la /usr/local/lib/libcaosdb-$CPPLIB_VERSION && \
ls -la /usr/local/lib/libcaosdb-${ENV_CPPLIB_VERSION} && \
mkdir build && \
cd build && \
/wait-for-it.sh caosdb-server:10443 -t 500 -- \
cmake -D CMAKE_PREFIX_PATH=/usr/local/lib/libcaosdb-$CPPLIB_VERSION .. && \
cmake -D CMAKE_PREFIX_PATH=/usr/local/lib/libcaosdb-${ENV_CPPLIB_VERSION} .. && \
cmake --build . && \
ctest
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