Skip to content
Snippets Groups Projects
Commit d505a40b authored by szymekc's avatar szymekc
Browse files
parents 394b0443 9cd8487a
No related branches found
No related tags found
No related merge requests found
Pipeline #2806 passed
stages:
- build
build_image:
stage: build
image: docker:18.09.7
only:
- master
services:
- 'docker:18.09.7-dind'
script:
- docker build -t clarinpl/tag-converter .
- echo $DOCKER_PASSWORD > pass.txt
- cat pass.txt | docker login --username $DOCKER_USERNAME --password-stdin
- rm pass.txt
- docker push clarinpl/tag-converter
...@@ -15,9 +15,6 @@ find_package(Boost COMPONENTS program_options system thread filesystem chrono at ...@@ -15,9 +15,6 @@ find_package(Boost COMPONENTS program_options system thread filesystem chrono at
link_directories(${Boost_LIBRARY_DIRS}) link_directories(${Boost_LIBRARY_DIRS})
set(LIBS ${LIBS} ${Boost_LIBRARIES}) set(LIBS ${LIBS} ${Boost_LIBRARIES})
find_package(amqpcpp REQUIRED)
set(LIBS ${LIBS} amqpcpp)
find_package(Threads) find_package(Threads)
set(LIBS ${LIBS} ${CMAKE_THREAD_LIBS_INIT}) set(LIBS ${LIBS} ${CMAKE_THREAD_LIBS_INIT})
......
FROM clarinpl/cpp FROM clarinpl/cpp:16.04
RUN apt update && apt install wsnlp-16-04
WORKDIR /home/install WORKDIR /home/install
COPY CMakeScripts/ CMakeScripts/ COPY CMakeScripts/ CMakeScripts/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment