Skip to content
2 changes: 2 additions & 0 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 33 additions & 14 deletions build-locally.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% set version = "5.0.7" %}
{% set major = version.rpartition('.')[0] %}
{% set cuda_major = (cuda_compiler_version|default("11.8")).rpartition('.')[0] %}
{% set build = 0 %}
{% set build = 1 %}

# give conda package a higher build number
{% if mpi_type == 'conda' %}
Expand Down Expand Up @@ -94,7 +94,7 @@ outputs:
run:
- {{ pin_subpackage('openmpi', exact=True) }}
# host C compilers work fine (better) on mac
- {{ compiler('c') }}
- {{ c_compiler }} >={{ c_compiler_version }}
test:
script: run_test.sh
files:
Expand All @@ -110,7 +110,7 @@ outputs:
run:
- {{ pin_subpackage('openmpi', exact=True) }}
# host C compilers work fine (better) on mac
- {{ compiler('cxx') }}
- {{ cxx_compiler }} >={{ cxx_compiler_version }}
test:
script: run_test.sh
files:
Expand All @@ -125,7 +125,7 @@ outputs:
- {{ stdlib('c') }}
run:
- {{ pin_subpackage('openmpi', exact=True) }}
- {{ compiler('fortran') }}
- {{ fortran_compiler }} >={{ fortran_compiler_version }}
test:
script: run_test.sh
files:
Expand Down
Loading