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

36
Jenkinsfile vendored
View File

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

View File

@@ -83,10 +83,12 @@
},
{
"name": "Moonlight_Debug_64",
"hidden": true,
"inherits": ["moonlight", "debug", "64imc"]
},
{
"name": "TGC_VP_Debug_64",
"hidden": true,
"inherits": ["tgc_vp", "debug", "64imc"]
},
{
@@ -102,15 +104,17 @@
"inherits": ["tgc_vp", "release", "32imc"]
},
{
"name": "ISS_Release_64",
"name": "ISS_Release_64",
"inherits": ["iss", "release", "64imc"]
},
{
"name": "Moonlight_Release_64",
"hidden": true,
"inherits": ["moonlight", "release", "64imc"]
},
{
"name": "TGC_VP_Release_64",
"hidden": true,
"inherits": ["tgc_vp", "release", "64imc"]
}