From 7cbd868f9ae257499d53ca2aec94c863f975651b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Doeraene?= Date: Fri, 2 Feb 2018 14:12:42 +0100 Subject: [PATCH] Add configuration for AppVeyor. --- appveyor.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..94732ca --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,19 @@ +version: '{build}' +os: Windows Server 2012 +environment: + global: + SCALAJS_VERSION: 1.0.0-M3 + matrix: + - SCALA_VERSION: 2.11.12 + - SCALA_VERSION: 2.12.4 +install: + - cmd: choco install sbt --version 1.0.2 -ia "INSTALLDIR=""C:\sbt""" + - cmd: SET PATH=C:\sbt\bin;%JAVA_HOME%\bin;%PATH% + - cmd: SET SBT_OPTS=-XX:MaxPermSize=2g -Xmx4g +build: off +test_script: + - cmd: sbt ";clean;++%SCALA_VERSION%;set scalaJSVersion in ThisBuild := \"%SCALAJS_VERSION%\";cliPack" +cache: + - C:\sbt + - C:\Users\appveyor\.ivy2\cache + - C:\Users\appveyor\.sbt