hides 64-bit fw compilation for moonlight/tgc_vp and disables it in jenkin pipeline
This commit is contained in:
32
Jenkinsfile
vendored
32
Jenkinsfile
vendored
@@ -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 'rm -rf * .??* '
|
sh 'pwd'
|
||||||
checkout_iss_project("https://git.minres.com/TGFS/TGC-ISS.git", "develop")
|
dir("TGC-ISS"){
|
||||||
dir("TGC-COMPLIANCE"){
|
sh 'pwd'
|
||||||
checkout_iss_project("https://git.minres.com/TGFS/TGC-COMPLIANCE.git", "master")
|
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")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dir("TGC-GEN"){
|
|
||||||
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'
|
||||||
/*
|
/*
|
||||||
|
@@ -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"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user