summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorEvan Bollig <ebbollig@amazon.com>2022-05-23 16:33:38 -0500
committerGitHub <noreply@github.com>2022-05-23 15:33:38 -0600
commit07e9c0695af09bbf5d1ebe51bb6f2b34eb88a3df (patch)
treef50e9a58a1e5476ff55a36bc1e6c02ea95cf0fe1 /var
parentf24886acb5162b18dfdf3c8c19d31ea7ffa03c3c (diff)
downloadspack-07e9c0695af09bbf5d1ebe51bb6f2b34eb88a3df.tar.gz
spack-07e9c0695af09bbf5d1ebe51bb6f2b34eb88a3df.tar.bz2
spack-07e9c0695af09bbf5d1ebe51bb6f2b34eb88a3df.tar.xz
spack-07e9c0695af09bbf5d1ebe51bb6f2b34eb88a3df.zip
Added cloud_pipline for E4S on Amazon Linux (#29522)
Add two new cloud pipelines for E4S on Amazon Linux, include arm and x86 (v3 + v4) stacks. Notes: - Updated mpark-variant to remove conflict that no longer exists in Amazon Linux - Which command on Amazon Linux prefixes on all results when padded_length is too high. In this case, padded_length<=503 works as expected. Chose conservative length of 384.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mpark-variant/package.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/mpark-variant/package.py b/var/spack/repos/builtin/packages/mpark-variant/package.py
index de7694adeb..58fb64c037 100644
--- a/var/spack/repos/builtin/packages/mpark-variant/package.py
+++ b/var/spack/repos/builtin/packages/mpark-variant/package.py
@@ -31,9 +31,10 @@ class MparkVariant(CMakePackage):
conflicts('%gcc@:4.7', msg=cxx11_msg)
conflicts('%clang@:3.5', msg=cxx11_msg)
- conflicts('%gcc@7.3.1',
- msg='GCC 7.3.1 has a bug that prevents using MPark.Variant. '
- 'See https://github.com/mpark/variant/issues/43 and '
- 'https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84785 '
- 'Please use a different compiler version or another '
- 'compiler.')
+ # This compiler bug has been resolved and backported on gcc@7.3.1 os=amzn2
+ # conflicts('%gcc@7.3.1',
+ # msg='GCC 7.3.1 has a bug that prevents using MPark.Variant. '
+ # 'See https://github.com/mpark/variant/issues/43 and '
+ # 'https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84785 '
+ # 'Please use a different compiler version or another '
+ # 'compiler.')