Merge branch 'developer' into dev/xilinx_power_cmd
Build on RHEL9 / build (push) Successful in 3m46s
Build on RHEL8 / build (push) Successful in 4m54s
Run Simulator Tests on local RHEL9 / build (push) Failing after 3m41s
Run Simulator Tests on local RHEL8 / build (push) Failing after 5m23s

This commit is contained in:
2026-02-27 14:51:01 +01:00
5 changed files with 1 additions and 11 deletions
-2
View File
@@ -23,8 +23,6 @@ jobs:
conda activate det
cmake .. -DSLS_USE_PYTHON=ON
make -j 2
cd ../pyctbgui
make
- name: Deploy to NFS update server
if: gitea.ref == 'refs/heads/developer'
-2
View File
@@ -20,8 +20,6 @@ jobs:
mkdir build && cd build
cmake -DSLS_USE_PYTHON=ON -DPython_EXECUTABLE=/usr/bin/python3.13 -DPython_INCLUDE_DIR=/usr/include/python3.13 -DPython_LIBRARY=/usr/lib64/libpython3.13.so ..
make -j 2
cd ../pyctbgui
make
- name: Deploy to NFS update server
if: gitea.ref == 'refs/heads/developer'
@@ -1450,12 +1450,6 @@ int validateVchip(int val, char *mess) {
LOG(logERROR, (mess));
return FAIL;
}
if (vLimit > 0 && val > vLimit) {
sprintf(mess, "Invalid vchip value %d mV. Exceeds vLimit %d mV\n", val,
vLimit);
LOG(logERROR, (mess));
return FAIL;
}
return OK;
}
@@ -121,7 +121,7 @@ std::string CreateMasterHDF5File(const std::filesystem::path &filePath,
std::mutex *hdf5LibMutex) {
std::filesystem::path p = filePath / (fileNamePrefix + "_master_" +
std::to_string(fileIndex) + ".json");
std::to_string(fileIndex) + ".h5");
std::string fileName = p.string();
std::lock_guard<std::mutex> lock(*hdf5LibMutex);