From 8f82c90825ca241f17071f99da36f3f55bddcf65 Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Sun, 5 Feb 2017 14:35:48 -0800 Subject: [PATCH] appveyor configuration to build on 15.3.1, 17.5, 18.3 and 19.2 16.x is not available on chocolatey --- appveyor.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..1356d3a2 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,21 @@ +version: "{build}" +branches: + only: + - master +environment: + matrix: + - erlang_vsn: 19.2 + - erlang_vsn: 18.3 + - erlang_vsn: 17.5 + - erlang_vsn: 15.3.1 +install: +- ps: choco install erlang --version $env:erlang_vsn +build_script: +- ps: cmd.exe /c 'bootstrap.bat' +test_script: +- ps: cmd.exe /c 'rebar3.cmd ct' +notifications: +- provider: GitHubPullRequest + on_build_success: true + on_build_failure: true + on_build_status_changed: false \ No newline at end of file