build tests: put an upper bound on the version of GCC being used (#23630)
This commit is contained in:
parent
117dfcae25
commit
9e30e669d2
2 changed files with 5 additions and 1 deletions
2
.github/workflows/linux_build_tests.yaml
vendored
2
.github/workflows/linux_build_tests.yaml
vendored
|
@ -42,7 +42,7 @@ jobs:
|
||||||
package:
|
package:
|
||||||
- lz4 # MakefilePackage
|
- lz4 # MakefilePackage
|
||||||
- mpich~fortran # AutotoolsPackage
|
- mpich~fortran # AutotoolsPackage
|
||||||
- tut # WafPackage
|
- 'tut%gcc@:10.99.99' # WafPackage
|
||||||
- py-setuptools # PythonPackage
|
- py-setuptools # PythonPackage
|
||||||
- openjpeg # CMakePackage
|
- openjpeg # CMakePackage
|
||||||
- r-rcpp # RPackage
|
- r-rcpp # RPackage
|
||||||
|
|
|
@ -20,6 +20,10 @@ class Tut(WafPackage):
|
||||||
# https://github.com/mrzechonek/tut-framework/issues/18
|
# https://github.com/mrzechonek/tut-framework/issues/18
|
||||||
depends_on('python@:3.6', type='build')
|
depends_on('python@:3.6', type='build')
|
||||||
|
|
||||||
|
# Tut is used for smoke build tests in CI, and started failing as
|
||||||
|
# soon as gcc@11 was introduced in the environment
|
||||||
|
conflicts('%gcc@11:')
|
||||||
|
|
||||||
def build_args(self):
|
def build_args(self):
|
||||||
args = []
|
args = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue