-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
53 lines (52 loc) · 1.95 KB
/
.travis.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
arch: amd64
language: cpp
compiler: clang
jobs:
include:
####################################
- stage: "Unit tests on linux" #
####################################
os: linux
dist: bionic
env:
- JAVA_OPTS="-Xmx2048m -Xms512m"
- MAVEN_OPTS="$JAVA_OPTS"
script:
- clang++ -fPIC -std=c++11 -O3 -shared bindings.cpp -I hnswlib -o l hnswlib-jna/src/main/resources/libhnswlib-jna-x86-64.so
- mvn test
####################################
- stage: "Unit tests on macos" #
####################################
os: osx
osx_image: xcode9.3
script:
- clang++ -std=c++11 -O3 -shared bindings.cpp -I hnswlib -o l hnswlib-jna/src/main/resources/libhnswlib-jna-x86-64.dylib
- mvn test
###################################################
- stage: "Unit tests on macos (no compilation)" #
###################################################
os: osx
osx_image: xcode9.3
script:
- mvn test
####################################
- stage: "Unit tests on windows" #
####################################
os: windows
before_install:
- choco install jdk8 --version 8.0.211
- choco install maven --version 3.6.3
script:
- export JAVA_HOME="/c/Program Files/Java/jdk1.8.0_211/"
- clang++ -O3 -shared bindings.cpp -I hnswlib -o hnswlib-jna/src/main/resources/libhnswlib-jna.dll
- /c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin/mvn test
#####################################################
- stage: "Unit tests on windows (no compilation)" #
#####################################################
os: windows
before_install:
- choco install jdk8 --version 8.0.211
- choco install maven --version 3.6.3
script:
- export JAVA_HOME="/c/Program Files/Java/jdk1.8.0_211/"
- /c/ProgramData/chocolatey/lib/maven/apache-maven-3.6.3/bin/mvn test