From 8f82c90825ca241f17071f99da36f3f55bddcf65 Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Sun, 5 Feb 2017 14:35:48 -0800 Subject: 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 (limited to 'appveyor.yml') 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 -- cgit v1.1 From 205d0bfd5bf78e9b23c2fec36a54012ca4ac5bd0 Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Sun, 9 Jul 2017 14:00:44 -0700 Subject: drop r15 from appveyor config --- appveyor.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index 1356d3a..fa44ffa 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,7 +7,6 @@ environment: - 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: @@ -18,4 +17,4 @@ notifications: - provider: GitHubPullRequest on_build_success: true on_build_failure: true - on_build_status_changed: false \ No newline at end of file + on_build_status_changed: false -- cgit v1.1