This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
55 lines (49 loc) · 1.6 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
54
55
language: generic
os:
- linux
- osx
env:
- PYTHON_VERSION="2.7" JAVA_VERSION="8"
- PYTHON_VERSION="3.6" JAVA_VERSION="8" RUN="sdist"
- PYTHON_VERSION="3.7" JAVA_VERSION="8"
- PYTHON_VERSION="2.7" JAVA_VERSION="9"
- PYTHON_VERSION="3.6" JAVA_VERSION="9"
- PYTHON_VERSION="3.7" JAVA_VERSION="9"
- PYTHON_VERSION="2.7" JAVA_VERSION="10"
- PYTHON_VERSION="3.6" JAVA_VERSION="10"
- PYTHON_VERSION="3.7" JAVA_VERSION="10"
- PYTHON_VERSION="2.7" JAVA_VERSION="11"
- PYTHON_VERSION="3.6" JAVA_VERSION="11"
- PYTHON_VERSION="3.7" JAVA_VERSION="11"
matrix:
fast_finish: true
install:
- if [ "$TRAVIS_OS_NAME" = linux ]; then
sudo apt-get update;
MINICONDAVERSION="Linux";
else
MINICONDAVERSION="MacOSX";
fi;
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-$MINICONDAVERSION-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- echo ". $HOME/miniconda/etc/profile.d/conda.sh" >> $HOME/.bashrc
- source $HOME/.bashrc
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda update -q conda
- conda info -a
- conda create -n jnius_env python=$PYTHON_VERSION
- conda activate jnius_env
- conda install openjdk=$JAVA_VERSION cython nose ant pip setuptools six
script:
- conda activate jnius_env
- if [ "$RUN" = "sdist" ] && [ "$TRAVIS_OS_NAME" = "linux" ]; then
if [ "$PYJNIUS_DEPLOY" == "1" ]; then
conda install twine;
python setup_sdist.py sdist;
python -m twine upload dist/*;
fi;
else
make && make tests;
fi;