summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralisdair sullivan <alisdairsullivan@gmail.com>2017-02-05 14:35:48 -0800
committeralisdair sullivan <alisdairsullivan@gmail.com>2017-02-05 14:39:23 -0800
commit8f82c90825ca241f17071f99da36f3f55bddcf65 (patch)
treeaa7a06f8b8f7d56a82eb49d1113e1747aec5a6b1
parent95ef84953b3f40b83126f00f0746f7918d607315 (diff)
appveyor configuration to build on 15.3.1, 17.5, 18.3 and 19.2
16.x is not available on chocolatey
-rw-r--r--appveyor.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..1356d3a
--- /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