Skip to content
Snippets Groups Projects
Commit d5fbbc79 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Fixed conda version

parent 9d72305d
No related branches found
No related tags found
No related merge requests found
...@@ -264,4 +264,4 @@ after_success: ...@@ -264,4 +264,4 @@ after_success:
- if test "$MAKECOVERAGE" == yes ; then ./.travis/push coverage ; fi - if test "$MAKECOVERAGE" == yes ; then ./.travis/push coverage ; fi
- if test "$MAKECOVERAGE" == yes ; then bash <(curl -s https://codecov.io/bash) > /dev/null ; fi - if test "$MAKECOVERAGE" == yes ; then bash <(curl -s https://codecov.io/bash) > /dev/null ; fi
# upload conda package # upload conda package
- if test -n "$PLUMED_CONDA" && test -n "$TRAVIS_TAG" ; then make -C conda upload ; fi - if test -n "$PLUMED_CONDA" && test -n "$TRAVIS_TAG" ; then VERSION="$TRAVIS_TAG" make -C conda upload ; fi
{% set name = "plumed2" %} {% set name = "plumed2" %}
{% set version = "2.5" %} {% set version = environ['VERSION'] %}
package: package:
name: {{ name|lower }} name: {{ name|lower }}
......
...@@ -13,7 +13,6 @@ else ...@@ -13,7 +13,6 @@ else
fi fi
export PATH="$CONDA_HOME/bin:$PATH" export PATH="$CONDA_HOME/bin:$PATH"
export VERSION=$TRAVIS_TAG
# Disabled because it fails # Disabled because it fails
if [[ -n "$CONDA_UPLOAD_TOKEN" ]]; then if [[ -n "$CONDA_UPLOAD_TOKEN" ]]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment