Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 16 additions & 9 deletions Jenkinsfile-dynamatrix
Original file line number Diff line number Diff line change
Expand Up @@ -478,8 +478,8 @@ set | sort -n """
// BUILD_TYPE=default-tgt:distcheck-light + NO_PKG_CONFIG=true ?
],
dynamatrixAxesCommonEnv: [
['LANG=C','LC_ALL=C','TZ=UTC'
//,'BUILD_WARNFATAL=yes','BUILD_WARNOPT=hard'
['LANG=C','LC_ALL=C','TZ=UTC','BUILD_WARNFATAL=yes'
//,'BUILD_WARNOPT=hard'
]
],
allowedFailure: [
Expand Down Expand Up @@ -527,8 +527,8 @@ set | sort -n """
'BUILD_TYPE': ['default-tgt:cppcheck']
],
dynamatrixAxesCommonEnv: [
['LANG=C','LC_ALL=C','TZ=UTC', 'DO_CLEAN_CHECK=no'
//,'BUILD_WARNFATAL=yes','BUILD_WARNOPT=hard'
['LANG=C','LC_ALL=C','TZ=UTC', 'DO_CLEAN_CHECK=no', 'BUILD_WARNFATAL=yes'
//,'BUILD_WARNOPT=hard'
]
],
allowedFailure: [
Expand Down Expand Up @@ -685,7 +685,8 @@ set | sort -n """
],
dynamatrixAxesCommonEnv: [
['LANG=C','LC_ALL=C','TZ=UTC',
'BUILD_WARNFATAL=yes','BUILD_WARNOPT=minimal'
'BUILD_WARNFATAL=yes'
//,'BUILD_WARNOPT=medium'
]
],
allowedFailure: [
Expand Down Expand Up @@ -726,9 +727,14 @@ set | sort -n """
dynamatrixAxesCommonEnv: [
['LANG=C','LC_ALL=C','TZ=UTC',
// Build in a subdirectory to check that out-of-dir
// builds are healthy too
// builds are healthy too.
// NOTE: It would be useful to also have a recipe to build
// "completely out-of-tree", in a different filesystem (to
// make sure we do not rely on hard-links, relative paths,
// etc.)
'CI_BUILDDIR=obj',
'BUILD_WARNFATAL=yes','BUILD_WARNOPT=minimal'
'BUILD_WARNFATAL=yes'
//,'BUILD_WARNOPT=minimal'
]
],
allowedFailure: [
Expand Down Expand Up @@ -767,7 +773,8 @@ set | sort -n """
],
dynamatrixAxesCommonEnv: [
['LANG=C','LC_ALL=C','TZ=UTC',
'BUILD_WARNFATAL=yes','BUILD_WARNOPT=minimal'
'BUILD_WARNFATAL=yes'
//,'BUILD_WARNOPT=minimal'
]
],
allowedFailure: [
Expand Down Expand Up @@ -1213,7 +1220,7 @@ set | sort -n """
'bodyParStages': dynacfgPipeline.slowBuildDefaultBody_ci_build
] // one slowBuild filter configuration

,[name: 'Strict C and GNU standard builds on cross-Windows platforms (Linux+mingw), without distcheck and docs (allowed to fail)',
,[name: (dynacfgPipeline.disableStrictCIBuild_CrossWindows ? '' : 'Strict C and ') + 'GNU standard builds on cross-Windows platforms (Linux+mingw), without distcheck and docs (allowed to fail)',
disabled: dynacfgPipeline.disableSlowBuildCIBuild,
//branchRegexSource: ~/^(PR-.+|.*fightwarn.*|.*Windows.*)$/,
//branchRegexTarget: ~/fightwarn|Windows-.*/,
Expand Down