hides 64-bit fw compilation for moonlight/tgc_vp and disables it in jenkin pipeline

This commit is contained in:
2025-07-25 12:21:02 +02:00
parent f46a211a8d
commit a5cf27744a
2 changed files with 31 additions and 11 deletions

18
Jenkinsfile vendored
View File

@@ -124,6 +124,16 @@ pipeline {
options { options {
lock("One Board at a time") lock("One Board at a time")
} }
when{
not {
anyof {
expression { BOARD == 'Moonlight' && CORE_TYPE =='64'}
}
anyof {
expression { BOARD == 'TGC_VP' && CORE_TYPE =='64'}
}
}
}
stages { stages {
stage("CMAKE") { stage("CMAKE") {
steps { steps {
@@ -139,20 +149,26 @@ pipeline {
} }
stage("Checkout TGC-ISS, TGC-Compliance and TGC-GEN"){ stage("Checkout TGC-ISS, TGC-Compliance and TGC-GEN"){
steps { steps {
sh 'pwd'
dir("TGC-ISS"){
sh 'pwd'
sh 'rm -rf * .??* ' sh 'rm -rf * .??* '
checkout_iss_project("https://git.minres.com/TGFS/TGC-ISS.git", "develop") checkout_iss_project("https://git.minres.com/TGFS/TGC-ISS.git", "develop")
dir("TGC-COMPLIANCE"){ dir("TGC-COMPLIANCE"){
sh 'pwd'
checkout_iss_project("https://git.minres.com/TGFS/TGC-COMPLIANCE.git", "master") checkout_iss_project("https://git.minres.com/TGFS/TGC-COMPLIANCE.git", "master")
} }
dir("TGC-GEN"){ dir("TGC-GEN"){
sh 'pwd'
checkout_iss_project("https://git.minres.com/TGFS/TGC-GEN.git", "develop") checkout_iss_project("https://git.minres.com/TGFS/TGC-GEN.git", "develop")
} }
}
} }
} }
stage("Generate cores and build TGC-ISS"){ stage("Generate cores and build TGC-ISS"){
steps { steps {
sh 'pwd' sh 'pwd'
sh 'ls'
sh 'conan profile detect --force' sh 'conan profile detect --force'
sh 'rm -rf build' sh 'rm -rf build'
/* /*

View File

@@ -83,10 +83,12 @@
}, },
{ {
"name": "Moonlight_Debug_64", "name": "Moonlight_Debug_64",
"hidden": true,
"inherits": ["moonlight", "debug", "64imc"] "inherits": ["moonlight", "debug", "64imc"]
}, },
{ {
"name": "TGC_VP_Debug_64", "name": "TGC_VP_Debug_64",
"hidden": true,
"inherits": ["tgc_vp", "debug", "64imc"] "inherits": ["tgc_vp", "debug", "64imc"]
}, },
{ {
@@ -107,10 +109,12 @@
}, },
{ {
"name": "Moonlight_Release_64", "name": "Moonlight_Release_64",
"hidden": true,
"inherits": ["moonlight", "release", "64imc"] "inherits": ["moonlight", "release", "64imc"]
}, },
{ {
"name": "TGC_VP_Release_64", "name": "TGC_VP_Release_64",
"hidden": true,
"inherits": ["tgc_vp", "release", "64imc"] "inherits": ["tgc_vp", "release", "64imc"]
} }