Skip to content

Commit

Permalink
Merge pull request #45 from CDAT/build_with_nompi_libnetcdf
Browse files Browse the repository at this point in the history
Build with nompi libnetcdf
  • Loading branch information
muryanto1 authored May 21, 2020
2 parents 32b0d9b + e8773ec commit 1420f6e
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ aliases:
- &conda_upload
name: conda_upload
command: |
#if [[ $CIRCLE_BRANCH != "master" ]]; then
# exit 0
#fi
if [[ $CIRCLE_BRANCH != "master" ]]; then
exit 0
fi
source $WORKDIR/miniconda/etc/profile.d/conda.sh
conda activate base
UPLOAD_OPTIONS="-t $CONDA_UPLOAD_TOKEN upload -u $USER -l $LABEL"
Expand Down
59 changes: 59 additions & 0 deletions recipe/meta.yaml.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{% set name = "cdtime" %}

package:
name: {{ name|lower }}
version: @VERSION@

source:
git_rev: master
git_url: https://www.github.com/CDAT/cdtime.git

build:
number: @BUILD_NUMBER@
skip: True # [win]

requirements:
build:
- {{ compiler('c') }}
- {{ compiler('fortran') }}
host:
- python
- setuptools
- cython
- libcdms
- numpy
- libnetcdf * nompi_*
- cdat_info
- libdrs_f

run:
- python
- setuptools
- libcdms
- libnetcdf
- cdat_info
- libdrs_f
- {{ pin_compatible('numpy') }}

test:
imports:
- cdtime

about:
home: http://gitub.com/CDAT/cdtime
license: BSD-3-Clause
license_file: bsd-3-clause.txt
summary: Climate calendar manipulation tools
description: |
The cdtime module contains functions for converting between
these forms, based on the common calendars used in climate
simulation. Basic arithmetic and comparison operators are also available.
extra:
recipe-maintainers:
- dnadeau4
- doutriaux1
- downiec
- muryanto1
- jasonb5
- xylar

0 comments on commit 1420f6e

Please sign in to comment.