Skip to content

Commit

Permalink
Fixes for packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Gouache committed Jan 15, 2025
1 parent 361275b commit f8da574
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pack-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image: ['rockylinux:8', 'rockylinux:9']
image: ['rockylinux:9']
container:
image: ${{ matrix.image }}
steps:
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rocky_version: [8, 9]
rocky_version: [9]
permissions:
contents: 'read'
id-token: 'write'
Expand Down
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY $<1:${CMAKE_BINARY_DIR}/bin/>)
message(STATUS "Executables will be stored in ${CMAKE_BINARY_DIR}/bin/")
message(STATUS "Libraries will be stored in ${CMAKE_BINARY_DIR}/lib/")

# Avoid generating shared libs with version number in the filename
set(CMAKE_PLATFORM_NO_VERSIONED_SONAME 1)

if((CMAKE_SYSTEM_NAME STREQUAL "Linux") AND NOT (CMAKE_BUILD_TYPE STREQUAL
"Release"))
message("Build system == Linux, build with sanitizer tools")
Expand Down
2 changes: 1 addition & 1 deletion src/s3plugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#define KHIOPS_STR(s) #s
// Driver version
#define DRIVER_VERSION KHIOPS_STR(0.0.13-rc.1)
#define DRIVER_VERSION KHIOPS_STR(0.0.13)
// Release versions must have 3 digits, for example KHIOPS_STR(1.2.0)
// Alpha, beta ou release candidate have an extra suffix, for example :
// - KHIOPS_STR(1.2.0-a.1)
Expand Down

0 comments on commit f8da574

Please sign in to comment.