Skip to content

Commit

Permalink
remove workaround for unused jinja vars
Browse files Browse the repository at this point in the history
this is preventing rerender with latest conda-build
  • Loading branch information
minrk committed Sep 27, 2024
1 parent 4bf31d3 commit 4236802
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,7 @@ outputs:
- name: mpich-mpicc
build:
script:
- echo 'ok' # [not osx]
# make CONDA_BUILD_SYSROOT a 'used variable'
# so that conda-build knows to pass it to the test env
- echo "{{ CONDA_BUILD_SYSROOT }}" # [osx]
- echo 'ok'
requirements:
run:
- {{ pin_subpackage('mpich', exact=True) }}
Expand All @@ -84,10 +81,7 @@ outputs:
- name: mpich-mpicxx
build:
script:
- echo 'ok' # [not osx]
# make CONDA_BUILD_SYSROOT a 'used variable'
# so that conda-build knows to pass it to the test env
- echo "{{ CONDA_BUILD_SYSROOT }}" # [osx]
- echo 'ok'
requirements:
run:
- {{ pin_subpackage('mpich', exact=True) }}
Expand All @@ -102,10 +96,7 @@ outputs:
- name: mpich-mpifort
build:
script:
- echo 'ok' # [not osx]
# make CONDA_BUILD_SYSROOT a 'used variable'
# so that conda-build knows to pass it to the test env
- echo "{{ CONDA_BUILD_SYSROOT }}" # [osx]
- echo 'ok'
requirements:
run:
- {{ pin_subpackage('mpich', exact=True) }}
Expand Down

0 comments on commit 4236802

Please sign in to comment.