Skip to content

Commit

Permalink
Appveyor: Problem with dependencies
Browse files Browse the repository at this point in the history
XMLBear is skipped on Appveyor Windows builds
due to dependency issues. Fixes all dependency
issues.

Fixes coala#1354
  • Loading branch information
Techievena committed Feb 10, 2017
1 parent df01777 commit 555c082
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .ci/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ cache:
- "node_modules"
- "C:\\Users\\appveyor\\AppData\\Local\\coala-bears\\coala-bears"
- "C:\\Users\\appveyor\\AppData\\Roaming\\nltk_data"
- '%LocalAppData%\NuGet\Cache'
- 'packages -> **\.ci\packages.config'

branches: # Only build official branches, PRs are built anyway.
only:
Expand Down Expand Up @@ -56,6 +58,8 @@ install:
- "npm config set loglevel warn"
- "npm install"

- "nuget install .ci/packages.config"

build: false # Not a C# project, build stuff at the test step instead.

test_script:
Expand Down
7 changes: 7 additions & 0 deletions .ci/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="libxml2" version="2.7.8.7" targetFramework="net45" developmentDependency="true" />
<package id="libxslt" version="1.1.28" targetFramework="net45" developmentDependency="true" />
<package id="zlib" version="1.2.8.8 " targetFramework="net45" developmentDependency="true" />
<package id="libiconv" version="1.14.0.11" targetFramework="net45" developmentDependency="true" />
</packages>
1 change: 1 addition & 0 deletions bear-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ guess-language-spirit~=0.5.2
html-linter~=0.3.0
isort~=4.2
language-check~=0.8
lxml==3.6.0
munkres3~=1.0
mypy-lang~=0.4.6
nbformat~=4.1
Expand Down

0 comments on commit 555c082

Please sign in to comment.