From 2abeca9134f95fe656e117332f892203da4aa7fa Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Tue, 26 Oct 2021 12:47:20 +0200 Subject: Reorganize docker environments Now using debian8, debian9, debian11 for cuda 8 - 11.4 --- python/conda/libastra/linux_archive_build_config.yaml | 11 ----------- python/conda/libastra/linux_build_config.yaml | 7 ------- python/conda/libastra/linux_deb11_build_config.yaml | 8 ++++++++ python/conda/libastra/linux_deb8_build_config.yaml | 11 +++++++++++ python/conda/libastra/linux_deb9_build_config.yaml | 7 +++++++ python/conda/libastra/meta.yaml | 3 +++ 6 files changed, 29 insertions(+), 18 deletions(-) delete mode 100644 python/conda/libastra/linux_archive_build_config.yaml delete mode 100644 python/conda/libastra/linux_build_config.yaml create mode 100644 python/conda/libastra/linux_deb11_build_config.yaml create mode 100644 python/conda/libastra/linux_deb8_build_config.yaml create mode 100644 python/conda/libastra/linux_deb9_build_config.yaml (limited to 'python/conda/libastra') diff --git a/python/conda/libastra/linux_archive_build_config.yaml b/python/conda/libastra/linux_archive_build_config.yaml deleted file mode 100644 index 347557b..0000000 --- a/python/conda/libastra/linux_archive_build_config.yaml +++ /dev/null @@ -1,11 +0,0 @@ -cudatoolkit: - - 8.0 - - 9.0 - - 9.2 - - 10.0 - - 10.1 - - 10.2 -c_compiler_version: # [linux or win] - - 5.4 # [linux or win] -cxx_compiler_version: # [linux or win] - - 5.4 # [linux or win] diff --git a/python/conda/libastra/linux_build_config.yaml b/python/conda/libastra/linux_build_config.yaml deleted file mode 100644 index ab26115..0000000 --- a/python/conda/libastra/linux_build_config.yaml +++ /dev/null @@ -1,7 +0,0 @@ -cudatoolkit: - - 11.0 - - 11.1 -c_compiler_version: # [linux or win] - - 5.4 # [linux or win] -cxx_compiler_version: # [linux or win] - - 5.4 # [linux or win] diff --git a/python/conda/libastra/linux_deb11_build_config.yaml b/python/conda/libastra/linux_deb11_build_config.yaml new file mode 100644 index 0000000..1ab563e --- /dev/null +++ b/python/conda/libastra/linux_deb11_build_config.yaml @@ -0,0 +1,8 @@ +cudatoolkit: + - 11.2 + - 11.3 + - 11.4 +c_compiler_version: # [linux or win] + - 9.3 # [linux or win] +cxx_compiler_version: # [linux or win] + - 9.3 # [linux or win] diff --git a/python/conda/libastra/linux_deb8_build_config.yaml b/python/conda/libastra/linux_deb8_build_config.yaml new file mode 100644 index 0000000..347557b --- /dev/null +++ b/python/conda/libastra/linux_deb8_build_config.yaml @@ -0,0 +1,11 @@ +cudatoolkit: + - 8.0 + - 9.0 + - 9.2 + - 10.0 + - 10.1 + - 10.2 +c_compiler_version: # [linux or win] + - 5.4 # [linux or win] +cxx_compiler_version: # [linux or win] + - 5.4 # [linux or win] diff --git a/python/conda/libastra/linux_deb9_build_config.yaml b/python/conda/libastra/linux_deb9_build_config.yaml new file mode 100644 index 0000000..61303a3 --- /dev/null +++ b/python/conda/libastra/linux_deb9_build_config.yaml @@ -0,0 +1,7 @@ +cudatoolkit: + - 11.0 + - 11.1 +c_compiler_version: # [linux or win] + - 7.3 # [linux or win] +cxx_compiler_version: # [linux or win] + - 7.3 # [linux or win] diff --git a/python/conda/libastra/meta.yaml b/python/conda/libastra/meta.yaml index 4215fd1..0d0c7cf 100644 --- a/python/conda/libastra/meta.yaml +++ b/python/conda/libastra/meta.yaml @@ -22,7 +22,10 @@ requirements: - boost # [osx or linux] - cudatoolkit {{ cudatoolkit }} # [linux] # libstdcxx-ng 9.3 introduces extra host system requirements on glibc + # For the older systems (debian8, debian9) we use g++ 5.4 and 7.3, resp. + {% if cxx_compiler_version in ['5.4', '7.3'] -%} - libstdcxx-ng <9.3 # [linux] + {% endif %} run: # See: https://github.com/conda-forge/conda-forge.github.io/issues/687#issuecomment-460095230 - {{ pin_compatible('cudatoolkit', max_pin='x.x') }} # [linux] -- cgit v1.2.3