Skip to content

Commit

Permalink
Fix sbt failures on AppVeyor
Browse files Browse the repository at this point in the history
- The directory structure has changed in the 0.13.13 launcher;
  changing build script accordingly.

- This went undetected when upgrading to 0.13.13 because the
  cache for `c:\sbt` was not set up to be invalidated when
  `appveyor.xml` changes. This should be fixed now, too.
  • Loading branch information
szeiger committed Nov 30, 2016
1 parent 074002e commit 65a209e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Expand Up @@ -11,7 +11,7 @@ install:
} }
- cmd: SET JDK_HOME=C:\Program Files\Java\jdk1.8.0 - cmd: SET JDK_HOME=C:\Program Files\Java\jdk1.8.0
- cmd: SET JAVA_HOME=C:\Program Files\Java\jdk1.8.0 - cmd: SET JAVA_HOME=C:\Program Files\Java\jdk1.8.0
- cmd: SET PATH=C:\sbt\sbt\bin;%JDK_HOME%\bin;%PATH% - cmd: SET PATH=C:\sbt\sbt-launcher-packaging-0.13.13\bin;%JDK_HOME%\bin;%PATH%
- cmd: SET SBT_OPTS=-Xmx4g -Xss2m -Dslick.testkit-config=test-dbs/testkit-appveyor.conf - cmd: SET SBT_OPTS=-Xmx4g -Xss2m -Dslick.testkit-config=test-dbs/testkit-appveyor.conf
# Start up sqlservers: 2008 on port 1433, 2012 on 1533, 2014 on 1633. Enable tcp connections # Start up sqlservers: 2008 on port 1433, 2012 on 1533, 2014 on 1633. Enable tcp connections
- ps: | - ps: |
Expand Down Expand Up @@ -56,5 +56,5 @@ build_script:
test_script: test_script:
- sbt testkit/test:test - sbt testkit/test:test
cache: cache:
- C:\sbt\ - C:\sbt\ -> appveyor.yml
- C:\Users\appveyor\.ivy2 - C:\Users\appveyor\.ivy2

0 comments on commit 65a209e

Please sign in to comment.