Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
ipgallery.common.cpp
/
Microservice
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
e890e4f9
authored
Jun 26, 2018
by
Amir Aharon
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fixingf make package and removing temp files
parent
9fd2e4df
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
9 deletions
CMakeLists.txt
README.md
doc/todo.txt
script/build_microservice_docker.sh
CMakeLists.txt
View file @
e890e4f9
...
...
@@ -3,17 +3,17 @@ project(Microservice)
# version stuff
set
(
Microservice_VERSION_MAJOR 1
)
set
(
Microservice_VERSION_MINOR 5
)
set
(
Microservice_VERSION_PATCH
0
)
set
(
Microservice_VERSION_PATCH
1
)
set
(
Microservice_VERSION_STRING
${
Microservice_VERSION_MAJOR
}
.
${
Microservice_VERSION_MINOR
}
.
${
Microservice_VERSION_PATCH
}
)
# type build flags
#set(CMAKE_BUILD_TYPE Release)
set
(
CMAKE_BINARY
_DIR build
)
set
(
BUILD
_DIR build
)
set
(
CMAKE_BUILD_TYPE Debug
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-std=c++11 -m64 -g"
)
set
(
CMAKE_CXX_FLAGS_DEBUG
"-O0"
)
set
(
CMAKE_LIBRARY_OUTPUT_DIRECTORY
${
CMAKE_BINARY
_DIR
}
/lib
)
set
(
CMAKE_RUNTIME_OUTPUT_DIRECTORY
${
CMAKE_BINARY
_DIR
}
/bin
)
set
(
CMAKE_LIBRARY_OUTPUT_DIRECTORY
${
BUILD
_DIR
}
/lib
)
set
(
CMAKE_RUNTIME_OUTPUT_DIRECTORY
${
BUILD
_DIR
}
/bin
)
set
(
CMAKE_EXPORT_COMPILE_COMMANDS ON
)
# linked libs and their locations
...
...
@@ -161,7 +161,7 @@ set(CPACK_PACKAGE_DEFAULT_LOCATION "./dist")
include
(
CPack
)
#add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source)
# RUN make package
#
gradle uploadArchives -Pcversion=[version] -Ppublish_file=[the gz file]
#gradle uploadArchives -Pcversion=[version] -Ppublish_file=[the gz file]
# install lib files
#
install
(
TARGETS Microservice DESTINATION lib
)
...
...
README.md
View file @
e890e4f9
## C++ Microservice Framework
*
to create microservice docker run script/build_microservice_docker.sh
[
version
]
## VERSIONS:
# 1.5.1
-
Fully functioning evpp rest client , async only
# 1.5.0
-
add new rest server Evpp
-
add new Evpp http client, currently NOT TO BE USED!
...
...
doc/todo.txt
View file @
e890e4f9
- memory leak on performance testing of SendZmqRestRequests
- upon receiving the response , forward it to a new task to be carried by another thread
- catch http exception when callback url is down
- add Qihoo360/evpp as the http client with async, maybe also as server
\ No newline at end of file
+ add Qihoo360/evpp as the http client with async, maybe also as server
\ No newline at end of file
script/build_microservice_docker.sh
View file @
e890e4f9
...
...
@@ -7,6 +7,12 @@ if [ -z "$1" ]
exit
fi
echo
"cleaning old stuff.."
rm CPack
*
rm
-rf
cmake-build-debug _CPack_Packages CMakeFiles
rm CMakeCache.txt
rm cmake_install.cmake
echo
"building the base image..."
docker build
-f
Dockerfile.develop
-t
municipalitybank.com:5050/ipgallery.common.cpp/microservice/develop
.
echo
"run build env"
...
...
@@ -22,7 +28,7 @@ echo "build"
# set to exit on fail
set
-e
docker
exec
-it
devenv make
echo
"packaging...
"
echo
"packaging...
version: "
$1
# make package
docker
exec
-it
devenv make package
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment