Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 0-{branch}+{build}

shallow_clone: true

environment:
MIX_ENV: test

install:
- ps: Start-FileDownload "https://github.com/elixir-lang/elixir/releases/download/v1.4.2/Precompiled.zip"
- 7z x -oelixir Precompiled.zip
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I try to do cinst elixir --version 1.4.2 and then refreshenv it takes too long when downloading the Erlang package dependency, that's why I'm doing this, please keep in mind that AppVeyor already includes Erlang.

If you have any idea on how to improve this process please let me know.

- SET PATH=%PATH%;C:\Program Files\erl8.3\bin;C:\MinGW\msys\1.0\bin

cache:
- deps

build_script:
- elixir/bin/mix local.hex --force
- elixir/bin/mix local.rebar --force
- elixir/bin/mix deps.get
- elixir/bin/mix compile

test_script:
elixir/bin/mix test