-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable generating deb, rpm, NuGet, tgz, zip package through cmake bui…
…ld (#1662)
- Loading branch information
Showing
5 changed files
with
143 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Parse /etc/os-release to determine Linux distro | ||
|
||
if(EXISTS /etc/os-release) | ||
file(STRINGS /etc/os-release OS_RELEASE) | ||
foreach(NameAndValue ${OS_RELEASE}) | ||
# Strip leading spaces | ||
string(REGEX REPLACE "^[ ]+" "" NameAndValue ${NameAndValue}) | ||
# Find variable name | ||
string(REGEX MATCH "^[^=]+" Name ${NameAndValue}) | ||
# Find the value | ||
string(REPLACE "${Name}=" "" Value ${NameAndValue}) | ||
# Strip quotes from value | ||
string(REPLACE "\"" "" Value ${Value}) | ||
# Set the variable | ||
message("-- /etc/os-release : ${Name}=${Value}") | ||
set("OS_RELEASE_${Name}" "${Value}") | ||
endforeach() | ||
else() | ||
set("OS_RELEASE_NAME" ${CMAKE_SYSTEM_NAME}) | ||
set("OS_RELEASE_ID" ${CMAKE_SYSTEM_NAME}) | ||
set("OS_RELEASE_VERSION_ID" "1.0") | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
|
||
set(CPACK_PACKAGE_DESCRIPTION "OpenTelemetry C++ for Linux") | ||
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "OpenTelemetry C++ for Linux - C++ Implementation of OpenTelemetry Specification") | ||
set(CPACK_PACKAGE_VENDOR "OpenTelemetry") | ||
set(CPACK_PACKAGE_CONTACT "OpenTelemetry-cpp") | ||
set(CPACK_PACKAGE_HOMEPAGE_URL "https://opentelemetry.io/") | ||
set(CMAKE_PROJECT_NAME "opentelemetry-cpp") | ||
|
||
option(TARBALL "Build a tarball package" OFF) | ||
|
||
if (UNIX AND NOT APPLE) | ||
include(cmake/ParseOsRelease.cmake) | ||
set(CPACK_SYSTEM_NAME "${OS_RELEASE_ID}-${OS_RELEASE_VERSION_ID}") | ||
#set(CPACK_PACKAGING_INSTALL_PREFIX "/usr/local") | ||
set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${OPENTELEMETRY_VERSION}-${CPACK_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}") | ||
|
||
# Check if system is deb or rpm capable | ||
find_program(RPMCAPABLE rpmbuild) | ||
find_program(DEBCAPABLE dpkg-buildpackage) | ||
if (TARBALL) | ||
set(CPACK_GENERATOR "TGZ") | ||
message("-- Package name: ${CPACK_PACKAGE_FILE_NAME}.tar.gz") | ||
elseif (DEBCAPABLE MATCHES "NOTFOUND" AND RPMCAPABLE MATCHES "NOTFOUND") | ||
message(FATAL_ERROR "Required Package generator not found for either deb or rpm." | ||
" Install required package generation software and try again") | ||
elseif (NOT DEBCAPABLE MATCHES "NOTFOUND") | ||
if (NOT RPMCAPABLE MATCHES "NOTFOUND") | ||
message(WARNING "Both deb and rpm package generator found." | ||
"Selecting deb as default packager.") | ||
endif() | ||
set(CPACK_GENERATOR "DEB") | ||
set(INSTALL_LIB_DIR | ||
${CMAKE_INSTALL_PREFIX}/lib/${CPACK_DEBIAN_ARCHITECTURE}-linux-gnu) | ||
set(CPACK_DEBIAN_PACKAGE_PRIORITY "optional") | ||
set(CPACK_DEBIAN_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR}) | ||
#set(CPACK_COMPONENTS_ALL headers libraries) | ||
set (CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON) | ||
message("-- Package name: ${CPACK_PACKAGE_FILE_NAME}.deb") | ||
elseif(NOT RPMCAPABLE MATCHES "NOTFOUND") | ||
set(CPACK_GENERATOR "RPM") | ||
set(INSTALL_LIB_DIR | ||
${CMAKE_INSTALL_PREFIX}/lib/${CMAKE_SYSTEM_PROCESSOR}-linux-gnu) | ||
list(APPEND CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION "/usr/lib64/cmake") | ||
list(APPEND CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION "/usr/lib64/pkgconfig") | ||
set(CPACK_RPM_PACKAGE_LICENSE "Apache-2.0") | ||
message("-- Package name: ${CPACK_PACKAGE_FILE_NAME}.rpm") | ||
endif() | ||
elseif(APPLE) | ||
if (TARBALL) | ||
set(CPACK_GENERATOR "TGZ") | ||
message("-- Package name: ${CPACK_PACKAGE_FILE_NAME}.tar.gz") | ||
endif() | ||
elseif(WIN32) | ||
find_program(NUGETCAPABLE nuget) | ||
if(NOT NUGETCAPABLE MATCHES "NOTFOUND") | ||
set(CPACK_NUGET_PACKAGE_NAME "${CPACK_PROJECT_NAME}") | ||
set(CPACK_NUGET_PACKAGE_VERSION "${OPENTELEMETRY_VERSIOM}") | ||
set(CPACK_NUGET_PACKAGE_DESCRIPTION "${CPACK_PACKAGE_DESCRIPTION}") | ||
set(CPACK_NUGET_PACKAGE_AUTHORS "${CPACK_PACKAGE_VENDOR}") | ||
set(CPACK_NUGET_PACKAGE_TITLE "${CPACK_PACKAGE_DESCRIPTION_SUMMARY}") | ||
set(CPACK_NUGET_PACKAGE_OWNERS "${CPACK_PACKAGE_VENDOR}") | ||
set(CPACK_NUGET_PACKAGE_HOMEPAGE_URL "${CPACK_PACKAGE_HOMEPAGE_URL}") | ||
set(CPACK_NUGET_PACKAGE_DESCRIPTION_SUMMARY "${CPACK_PACKAGE_DESCRIPTION_SUMMARY}") | ||
set(CPACK_NUGET_PACKAGE_COPYRIGHT "${CPACK_PACKAGE_VENDOR}") | ||
set(CPACK_NUGET_PACKAGE_LICENSEURL "https://www.apache.org/licenses/LICENSE-2.0.txt") | ||
set(CPACK_NUGET_PACKAGE_LANGUAGE "en_US") | ||
set(CPACK_GENERATOR NuGet) | ||
else() | ||
set(CPACK_GENERATOR ZIP) | ||
endif() | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e7579ed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possible performance regression was detected for benchmark 'OpenTelemetry-cpp api Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold
2
.BM_CreateBaggageFrom180Entries
155821.59782449403
ns/iter74281.50511269105
ns/iter2.10
BM_SetValueBaggageWithTenEntries
1762.0648591322229
ns/iter684.9692611409571
ns/iter2.57
BM_SpanCreationWitContextPropagation
2550.3563158439865
ns/iter994.8018564233569
ns/iter2.56
This comment was automatically generated by workflow using github-action-benchmark.
e7579ed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possible performance regression was detected for benchmark 'OpenTelemetry-cpp sdk Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold
2
.BM_BaselineBuffer/1
2649228.096008301
ns/iter1184659.0042114258
ns/iter2.24
BM_LockFreeBuffer/1
3066151.6189575195
ns/iter1511765.0035667757
ns/iter2.03
This comment was automatically generated by workflow using github-action-benchmark.