Skip to content

Commit

Permalink
Fix jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
sklam committed Dec 3, 2014
1 parent 5ba468f commit 5eb132d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions conda-recipes/llvmlite-jenkins/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package:
name: llvmlite
version: {{ environ['GIT_DESCRIBE_TAG'].lstrip('v') }}
# GIT_DESCRIBE_TAG may not be set
version: {{ environ.get('GIT_DESCRIBE_TAG','').lstrip('v') }}

source:
path: ../..
#git_url: https://github.com/numba/llvmlite.git
# somehow git_url with relative path does not update GIT_DESCRIBE_TAG
git_url: https://github.com/numba/llvmlite.git

build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
Expand Down

0 comments on commit 5eb132d

Please sign in to comment.