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

WIP: pipeline

parent dfa91a7e
No related branches found
No related tags found
No related merge requests found
Pipeline #9662 failed
...@@ -7,10 +7,7 @@ COPY .docker/wait-for-it.sh /wait-for-it.sh ...@@ -7,10 +7,7 @@ COPY .docker/wait-for-it.sh /wait-for-it.sh
WORKDIR /libcaosdb/ WORKDIR /libcaosdb/
RUN mkdir build RUN mkdir build
WORKDIR /libcaosdb/build WORKDIR /libcaosdb/build
RUN conan install .. --profile ../conan.profile RUN conan create .. --profile ../conan.profile
RUN cmake ..
RUN cmake --build .
RUN cmake --install . --prefix /usr/local/
COPY . /caosdb-cppinttest COPY . /caosdb-cppinttest
WORKDIR /caosdb-cppinttest WORKDIR /caosdb-cppinttest
...@@ -20,7 +17,7 @@ RUN rm -rf .git ...@@ -20,7 +17,7 @@ RUN rm -rf .git
CMD mkdir build && \ CMD mkdir build && \
cd build && \ cd build && \
conan install .. --profile /libcaosdb/conan.profile \ conan install .. --profile /libcaosdb/conan.profile \
cmake -D CMAKE_PREFIX_PATH=/usr/local/ .. && \ cmake .. && \
cmake --build . && \ cmake --build . && \
/wait-for-it.sh caosdb-server:10443 -t 500 -- \ /wait-for-it.sh caosdb-server:10443 -t 500 -- \
ctest -V ctest -V
...@@ -111,7 +111,7 @@ build-test: ...@@ -111,7 +111,7 @@ build-test:
- mkdir build - mkdir build
- cd build - cd build
- conan install .. --profile /libcaosdb/conan.profile - conan install .. --profile /libcaosdb/conan.profile
- cmake -D CMAKE_PREFIX_PATH=/usr/local/ .. - cmake ..
- cmake --build . - cmake --build .
......
[requires] [requires]
libcaosdb/0.0.1 libcaosdb/0.0.2
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