diff --git a/CHANGELOG.md b/CHANGELOG.md index 020adf464..abc735b88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.2] - 2024-10-17 + +### Fixed + +- Fixed missing prefix DMA Medusa jenkins verification script. +- NFB-200G2QL: Fixed missing lock DNA_PORT2E to X0Y1 due to different Chip ID in each SLRs (private submodule). +- NFB-200G2QL: Fixed all PCIE paths for pblock (private submodule). + ## [0.7.1] - 2024-10-16 ### Fixed diff --git a/VERSION b/VERSION index 39e898a4f..7486fdbc5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.1 +0.7.2 diff --git a/extra/nfb-200g2ql b/extra/nfb-200g2ql index 40de643fd..bdcebd102 160000 --- a/extra/nfb-200g2ql +++ b/extra/nfb-200g2ql @@ -1 +1 @@ -Subproject commit 40de643fdb8dc078c95c640ba4f5f6e77390871d +Subproject commit bdcebd102c3ef0d8bd9494a5c0de852186e172d9 diff --git a/tests/jenkins/common.jenkins b/tests/jenkins/common.jenkins index a74daceca..dddcfe04d 100644 --- a/tests/jenkins/common.jenkins +++ b/tests/jenkins/common.jenkins @@ -63,7 +63,7 @@ def commonPrekladVerRun(COMPONENTS) { println "FAILED on components: ${failed}." emailext \ recipientProviders: [culprits(), developers()], - to: 'cabal@cesnet.cz, isa@cesnet.cz', + to: 'cabal@cesnet.cz,isa@cesnet.cz', subject: "[Jenkins] ${currentBuild.currentResult} ${env.JOB_NAME} #${currentBuild.number}", body: """\ The build of the repository ${env.JOB_NAME} #${currentBuild.number} ends up with status ${currentBuild.currentResult} on components: ${failed}. You can find build log in the attachments. @@ -136,7 +136,7 @@ def commonPrekladMultiVerRun(COMPONENTS, ofm_path = pwd()) { println "FAILED on components: ${failed}." emailext \ recipientProviders: [culprits(), developers()], - to: 'cabal@cesnet.cz', + to: 'cabal@cesnet.cz,isa@cesnet.cz', subject: "[Jenkins] ${currentBuild.currentResult} ${env.JOB_NAME} #${currentBuild.number}", body: """\ The build of the repository ${env.JOB_NAME} #${currentBuild.number} ends up with status ${currentBuild.currentResult} on components: ${failed}. You can find build log in the attachments. @@ -222,7 +222,7 @@ def commonPrekladHarpRun(COMPONENTS, ofm_path = pwd()) { println "FAILED on components: ${failed}." emailext \ recipientProviders: [culprits(), developers()], - to: 'cabal@cesnet.cz', + to: 'cabal@cesnet.cz,isa@cesnet.cz', subject: "[Jenkins] ${currentBuild.currentResult} ${env.JOB_NAME} #${currentBuild.number}", body: """\ The build of the repository (with HARP) ${env.JOB_NAME} #${currentBuild.number} ends up with status ${currentBuild.currentResult} on components: ${failed}. You can find build log in the attachments. diff --git a/tests/jenkins/ver_dma_medusa.jenkins b/tests/jenkins/ver_dma_medusa.jenkins index 8f4606061..abc933e9c 100644 --- a/tests/jenkins/ver_dma_medusa.jenkins +++ b/tests/jenkins/ver_dma_medusa.jenkins @@ -51,7 +51,7 @@ node('preklad') { timeout(time: 12, unit: 'HOURS') { stage("$name") { dir("$path") { - sh "python3 $multi_ver $fdo $pkg $settings" + sh "python3 $multi_ver -p $name $fdo $pkg $settings" } } } diff --git a/tests/jenkins/ver_dma_medusa_xl.jenkins b/tests/jenkins/ver_dma_medusa_xl.jenkins index 7ea140b63..62fd5d1ba 100644 --- a/tests/jenkins/ver_dma_medusa_xl.jenkins +++ b/tests/jenkins/ver_dma_medusa_xl.jenkins @@ -51,7 +51,7 @@ node('preklad') { timeout(time: 4, unit: 'DAYS') { stage("$name") { dir("$path") { - sh "python3 $multi_ver $fdo $pkg $settings" + sh "python3 $multi_ver -p $name $fdo $pkg $settings" } } }