You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We then see in the output from the "Build Depends" stage that we are indeed executing as Release (--disable-debug) which is populated from the following test to set the debug switch
In the old buildsteps, it was changed so that Default was RelWithDebInfo for reasons, so the build type is in general "correct" for what was intended xbmc/xbmc@b0092bf
I would guess the easiest way forward is just to remove the log line at
Maybe just relocating it at the end of the "Environment Setup" step where some platforms (Android, webos) make a change to the env.CONFIGURATION to still provide that log info early in a jenkins job log for those that are needing to look for it.
The text was updated successfully, but these errors were encountered:
I would probably put this down to more incorrect logging, but its definitely confusing for someone looking for the truth.
Android and webos both build Release, but reports Debug when "Default" is used (ie nightly job)
The following line is the cause of the following output in a job. Config is reported as debug.
pipeline-library/vars/buildKodi.groovy
Line 128 in 58d9214
The debug is populated from the following initially (Default == Debug)
pipeline-library/vars/buildKodi.groovy
Line 47 in 58d9214
We then in a later stage, Environment Setup, change env.CONFIGURATION to the inverse (Default == Release)
pipeline-library/vars/buildKodi.groovy
Line 153 in 58d9214
We then see in the output from the "Build Depends" stage that we are indeed executing as Release (--disable-debug) which is populated from the following test to set the debug switch
pipeline-library/vars/buildKodi.groovy
Line 243 in 58d9214
In the old buildsteps, it was changed so that Default was RelWithDebInfo for reasons, so the build type is in general "correct" for what was intended xbmc/xbmc@b0092bf
I would guess the easiest way forward is just to remove the log line at
pipeline-library/vars/buildKodi.groovy
Line 128 in 58d9214
Maybe just relocating it at the end of the "Environment Setup" step where some platforms (Android, webos) make a change to the env.CONFIGURATION to still provide that log info early in a jenkins job log for those that are needing to look for it.
The text was updated successfully, but these errors were encountered: