fix gitea workflows
Build on RHEL9 docker image / build (push) Successful in 4m14s
Build on RHEL8 docker image / build (push) Successful in 5m18s
Run Simulator Tests on local RHEL9 / build (push) Successful in 18m34s
Run Simulator Tests on local RHEL8 / build (push) Successful in 22m5s

This commit is contained in:
2026-07-07 11:10:23 +02:00
parent b1f598fba0
commit 8486aec226
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ jobs:
steps:
- name: Clone repository
run: |
git lfs install
git lfs install --skip-smudge
echo Cloning ${{ github.ref_name }}
git clone https://${{secrets.GITHUB_TOKEN}}@gitea.psi.ch/${{ github.repository }}.git --branch=${{ github.ref_name }} .
@@ -20,9 +20,7 @@ class MatterhornServerImpl
void set_module_position_and_update_srcudpmac(
const std::array<int, 2> &position_info);
void
set_source_udp_mac([[maybe_unused]] const uint64_t
src_mac); // TODO: doesnt it need to receive src_mac?
void set_source_udp_mac([[maybe_unused]] const uint64_t src_mac);
};
} // end namespace sls
@@ -31,7 +31,7 @@ set(PUBLICHEADERS
#Shared library
if(SLS_BUILD_SHARED_LIBRARIES)
add_library(slsServerShared SHARED $<TARGET_OBJECTS:slsServerObject>)
target_link_libraries(slsServerShared PUBLIC slsServerObject)
target_link_libraries(slsServerShared PUBLIC slsServerObject PRIVATE slsProjectWarnings)
set_target_properties(slsServerShared PROPERTIES
VERSION ${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}.${PACKAGE_VERSION_PATCH}
SOVERSION ${PACKAGE_VERSION_MAJOR}
@@ -44,7 +44,7 @@ endif(SLS_BUILD_SHARED_LIBRARIES)
#Static library
add_library(slsServerStatic STATIC $<TARGET_OBJECTS:slsServerObject>)
target_link_libraries(slsServerStatic PUBLIC slsServerObject)
target_link_libraries(slsServerStatic PUBLIC slsServerObject PRIVATE slsProjectWarnings)
set_target_properties(slsServerStatic PROPERTIES
ARCHIVE_OUTPUT_NAME SlsServerStatic
@@ -40,9 +40,11 @@ template <typename DataType> class VirtualMemoryModel {
public:
// IPcore_base_address is not used for virtual memory model but kept for
// compatibility with HardwareMemoryModel interface
VirtualMemoryModel([[maybe_unused]] const uint32_t IPcore_base_address,
VirtualMemoryModel(const uint32_t IPcore_base_address,
const size_t size_memory_space_)
: size_memory_space(size_memory_space_) {}
: size_memory_space(size_memory_space_) {
(void)IPcore_base_address; // suppress unused parameter warning
}
~VirtualMemoryModel() = default;