Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating config.yml #647

Merged
merged 18 commits into from
Oct 31, 2020
Prev Previous commit
Next Next commit
debug upload
  • Loading branch information
Muryanto committed Oct 29, 2020
commit 43bc5f8b4d319ab962e1367ec457e412ef0222b5
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ aliases:
os=`uname`
artifacts_dir="artifacts/artifacts.${os}.noarch"
make conda-build workdir=$WORKDIR artifact_dir=$PWD/$artifacts_dir
echo "XXX artifacts_dir: ${artifacts_dir|}"
ls -l ${artifacts_dir}

- &setup_run_tests
name: setup_run_tests
Expand All @@ -69,6 +71,8 @@ aliases:
source $WORKDIR/miniconda/etc/profile.d/conda.sh
conda activate base
UPLOAD_OPTIONS="conda_upload_token=$CONDA_UPLOAD_TOKEN"
echo "XXX artifacts_dir: $PWD/artifacts/*Linux*/"
ls -l $PWD/artifacts/*Linux*/
make conda-upload workdir=$WORKDIR $UPLOAD_OPTIONS artifact_dir="$PWD/artifacts/*Linux*/"

- &run_coveralls
Expand Down Expand Up @@ -159,7 +163,8 @@ workflows:
os: [ linux ] #, macos ]
# py_ver: [ "3.6", "3.7", "3.8"]
py_ver: [ "3.6"]
libnetcdf: [ "nompi", "mpi_mpich", "mpi_openmpi" ]
# libnetcdf: [ "nompi", "mpi_mpich", "mpi_openmpi" ]
libnetcdf: [ "nompi" ]
name: test-<< matrix.os >>-<< matrix.py_ver >>-<< matrix.libnetcdf >>
requires:
- build-<< matrix.os >>
Expand Down