You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sedona.apache.org by ji...@apache.org on 2020/12/04 08:18:56 UTC

[incubator-sedona] branch master updated: Remove .travis.yml

This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new d58333c  Remove .travis.yml
d58333c is described below

commit d58333ce412019238ad9f82968bed4b653f40de8
Author: Jia Yu <ji...@apache.org>
AuthorDate: Fri Dec 4 00:18:39 2020 -0800

    Remove .travis.yml
---
 .travis.yml | 31 -------------------------------
 1 file changed, 31 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index c8fe604..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-os:
-  - linux
-
-dist: bionic
-language: scala
-
-jdk:
-  - openjdk8
-
-python:
-  - 3.7
-
-before_install:
-  - wget https://archive.apache.org/dist/spark/spark-3.0.0/spark-3.0.0-bin-hadoop2.7.tgz
-  - tar -xzf spark-3.0.0-bin-hadoop2.7.tgz
-  - rm spark-3.0.0-bin-hadoop2.7.tgz
-  - export SPARK_HOME=$PWD/spark-3.0.0-bin-hadoop2.7
-  - export PYTHONPATH=$SPARK_HOME/python
-
-install:
-  - sudo apt-get -y install python3-pip python-dev
-  - sudo pip3 install -U setuptools
-  - sudo pip3 install -U wheel
-  - sudo pip3 install -U virtualenvwrapper
-  - python3 -m pip install pipenv
-  - (cd python;pipenv install --dev)
-
-script:
-  - mvn -q clean install
-  - find python-adapter/target/ -iregex "python-adapter\/target\/sedona-python-adapter-[0-9]\.[0-9]\.[0-9]-incubator\(-SNAPSHOT\)?\.jar" -exec cp {} $SPARK_HOME/jars \;
-  - (cd python;pipenv run pytest tests)