forked from embulk/embulk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
28 lines (21 loc) · 939 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
version: "{branch} {build}"
build:
verbosity: detailed
install:
- ps: $zipPath = "$($env:USERPROFILE)\Handle.zip"
- ps: (New-Object Net.WebClient).DownloadFile('https://download.sysinternals.com/files/Handle.zip', $zipPath)
- ps: 7z x $zipPath -y -o"$env:APPVEYOR_BUILD_FOLDER" | Out-Null
# To avoid call-selfrun.bat FileNotFound exception, it installs and uses handle.exe as workaround provided by AppVeyor support.
# see http://help.appveyor.com/discussions/problems/5975-the-process-cannot-access-the-file-because-it-is-being-used-by-another-process
build_script:
- handle.exe -a -u C:\projects\embulk\embulk-cli\build\classes\test\org\embulk\cli\call-selfrun.bat -nobanner
- gradlew.bat --info --no-daemon check rubyTest
cache:
- C:\Users\appveyor\.gradle
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
# - JAVA_HOME: C:\Program Files (x86)\Java\jdk1.8.0
test: off
matrix:
fast_finish: true