Skip to content

Commit

Permalink
Testing: Try to fix build error in Appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Oct 22, 2015
1 parent 274c31d commit 9966f08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
7 changes: 1 addition & 6 deletions continuous_integration/appveyor/build_test.bat
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
if not %APPVEYOR_PULL_REQUEST_NUMBER%==false (
set PR=%APPVEYOR_PULL_REQUEST_NUMBER%
git fetch origin pull/%PR%/head:appveyor_pr_%PR%
)

cd .\\continuous_integration\\conda-recipes

conda build spyder
conda build -q spyder
6 changes: 3 additions & 3 deletions continuous_integration/conda-recipes/spyder/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ build:
osx_is_app: True

source:
git_url: {{ environ.get('FULL_SPYDER_CLONE') }} [unix]
git_url: {{ environ.get('APPVEYOR_BUILD_FOLDER') }} [win]
git_tag: {% if environ.get('TRAVIS_PULL_REQUEST') != 'false' %} {{ ['travis_pr_', environ.get('TRAVIS_PULL_REQUEST')]|join }} {% else %} master {% endif %} [unix]
git_tag: {% if environ.get('APPVEYOR_PULL_REQUEST_NUMBER') != 'false' %} {{ ['appveyor_pr_', environ.get('APPVEYOR_PULL_REQUEST_NUMBER')]|join }} {% else %} master {% endif %} [win]
git_tag: FETCH_HEAD [win]
git_url: {{ environ.get('FULL_SPYDER_CLONE') }} [unix]
git_tag: {% if environ.get('TRAVIS_PULL_REQUEST') != 'false' %} {{ ['travis_pr_', environ.get('TRAVIS_PULL_REQUEST')]|join }} {% else %} master {% endif %} [unix]

requirements:
build:
Expand Down

0 comments on commit 9966f08

Please sign in to comment.