diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2017-08-10 11:32:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-10 11:32:37 -0400 |
commit | d9064768e842d0d685287755bc2b31b223488923 (patch) | |
tree | 0ad7bbb424b57d6311aa0bc003c474b63fa8cb1f | |
parent | 2939110eb85bed0dd494bf0ddeb4c07f5e46bfc7 (diff) | |
parent | 205d0bfd5bf78e9b23c2fec36a54012ca4ac5bd0 (diff) |
Merge pull request #1470 from talentdeficit/appveyor
appveyor configuration to build on 15.3.1, 17.5, 18.3 and 19.2
-rw-r--r-- | appveyor.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..fa44ffa --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,20 @@ +version: "{build}" +branches: + only: + - master +environment: + matrix: + - erlang_vsn: 19.2 + - erlang_vsn: 18.3 + - erlang_vsn: 17.5 +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 |