forked from aalted/jblosc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
33 lines (31 loc) · 1.3 KB
/
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
# AppVeyor CI build configuration for jblosc
# This is the build version displayed on AppVeyor's UI.
# It's incrementally automatically like travis-ci but allows custom formatting.
version: '{build}'
install:
- git clone https://github.com/Blosc/c-blosc.git
- cd c-blosc
- mkdir build
- cd build
- cmake -DDEACTIVATE_ZLIB=ON -DCMAKE_GENERATOR_PLATFORM=x64 ..
- cmake --build . --target install
- copy "c:\Program Files (x86)\blosc\lib\blosc.dll" c:\Windows\System32
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile(
'http://www.us.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip',
'C:\maven-bin.zip'
)
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
- cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;"c:\Program Files (x86)\blosc\lib";c:\Windows\System32s;%PATH%
- cmd: SET MAVEN_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: SET JAVA_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: SET M2_HOME=C:\maven\apache-maven-3.2.5\
- cd c:\projects\jblosc\jblosc\
- dir c:\maven
build_script:
- mvn clean package --batch-mode -DskipTest
test_script:
- mvn clean install --batch-mode