diff options
author | Stuart Thackray <stuart.thackray@gmail.com> | 2018-12-11 08:53:29 +0200 |
---|---|---|
committer | Stuart Thackray <stuart.thackray@gmail.com> | 2018-12-11 08:53:29 +0200 |
commit | ebfa797c1f5d038b99beaf658757d974412a15c7 (patch) | |
tree | 9765880a7f0119c265d85f8bac7afea8d9542080 /appveyor.yml | |
parent | 71187514dabdd94aa333495d92df84a2e750099f (diff) | |
parent | 8e28561d4e14ea85d42d17ab5a0f17f5f1c696d2 (diff) |
Update from Upstream
Diffstat (limited to 'appveyor.yml')
-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 |