forked from JDvorak/slamengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
35 lines (27 loc) · 820 Bytes
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- master
- /^backport\/v.*/
skip_tags: true
cache:
- .targets
- project\target
- project\project\target
# - '%localappdata%\coursier'
- 'C:\Users\appveyor\.sbt'
- 'C:\Users\appveyor\.ivy2'
- 'C:\Users\appveyor\.coursier'
environment:
JAVA_HOME: 'C:\Program Files\Java\jdk1.8.0'
PATH: '%JAVA_HOME%\bin;%PATH%'
COURSIER_CACHE: 'C:\Users\appveyor\.coursier'
before_build:
- cmd: 'IF "%APPVEYOR_PULL_REQUEST_NUMBER%"=="" (.\sbt clean)'
build_script:
- cmd: .\sbt ++"2.12.4" test:compile
test_script:
- cmd: 'echo mimir = "C:\\Users\\appveyor\\AppData\\Local\\precog" > it\testing.conf'
- cmd: '.\sbt ++"2.12.4" it/sideEffectTestFSConfig "testOnly -- xonly" "exclusive:testOnly -- xonly"'