remove hidden files
Project: http://git-wip-us.apache.org/repos/asf/mahout/repo Commit: http://git-wip-us.apache.org/repos/asf/mahout/commit/591deef1 Tree: http://git-wip-us.apache.org/repos/asf/mahout/tree/591deef1 Diff: http://git-wip-us.apache.org/repos/asf/mahout/diff/591deef1 Branch: refs/heads/asf-site Commit: 591deef1b93b9e21bec4c3ca65b32cab0dc9f259 Parents: 99a5358 Author: dustinvanstee <[email protected]> Authored: Tue Jun 27 11:16:36 2017 -0400 Committer: dustinvanstee <[email protected]> Committed: Tue Jun 27 11:16:36 2017 -0400 ---------------------------------------------------------------------- .github/PULL_REQUEST_TEMPLATE | 21 ------- .gitignore | 31 ---------- .travis.yml | 118 ------------------------------------- 3 files changed, 170 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mahout/blob/591deef1/.github/PULL_REQUEST_TEMPLATE ---------------------------------------------------------------------- diff --git a/.github/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE deleted file mode 100644 index 69a2e2f..0000000 --- a/.github/PULL_REQUEST_TEMPLATE +++ /dev/null @@ -1,21 +0,0 @@ -### Purpose of PR: -Please give a short description of what this PR is for. - - -### Important ToDos -Please mark each with an "x" -- [ ] A JIRA ticket exists (if not, please create this first)[https://issues.apache.org/jira/browse/ZEPPELIN/] -- [ ] Title of PR is "MAHOUT-XXXX Brief Description of Changes" where XXXX is the JIRA number. -- [ ] Created unit tests where appropriate -- [ ] Added licenses correct on newly added files -- [ ] Assigned JIRA to self -- [ ] Added documentation in scala docs/java docs, and to website -- [ ] Successfully built and ran all unit tests, verified that all tests pass locally. - -If all of these things aren't complete, but you still feel it is -appropriate to open a PR, please add [WIP] after MAHOUT-XXXX before the -descriptions- e.g. "MAHOUT-XXXX [WIP] Description of Change" - -Does this change break earlier versions? - -Is this the beginning of a larger project for which a feature branch should be made? http://git-wip-us.apache.org/repos/asf/mahout/blob/591deef1/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index a3eb8c5..0000000 --- a/.gitignore +++ /dev/null @@ -1,31 +0,0 @@ -output-asf-email-examples/ -.checkstyle -.ruleset -.pmd -.classpath -.project -.settings/ -.idea/ -.DS_Store -.cache -*.iml -target/ -examples/bin/tmp -output -mr/build/ -mr/input/ -mr/output/ -mr/testdata/ -mr/temp -temp -foo -math-tests/ -metastore_db/* -bin/derby.log -bin/metastore_db -*jar -*log -website/oldsite/_site -website/docs/_site -website/front/_site -website/Gemfile.lock \ No newline at end of file http://git-wip-us.apache.org/repos/asf/mahout/blob/591deef1/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8644436..0000000 --- a/.travis.yml +++ /dev/null @@ -1,118 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -sudo: required - -dist: trusty - -cache: - directories: - - $HOME/.m2 - -install: true - -language: java - -branches: - only: - - master - -env: - global: - - JAVA_OPTS=-Xmx3g - - TEST_MODULES="hdfs,math,math-scala,spark" - - STANDARD_BUILD_OPTS="-Dmaven.javadoc.skip=true -B -V" - - PROFILES="-Ptravis" - - SPARK_1_6=http://d3kbcqa49mib13.cloudfront.net/spark-1.6.3-bin-hadoop2.6.tgz - - SPARK_2_0=http://d3kbcqa49mib13.cloudfront.net/spark-2.0.2-bin-hadoop2.7.tgz - - SPARK_2_1=http://d3kbcqa49mib13.cloudfront.net/spark-2.1.0-bin-hadoop2.7.tgz - -# The file assumes a certain build order for the maven / nightly build deployments. -matrix: - include: - # Build Spark 1.6.3 , Scala 2.10 - - jdk: "openjdk7" - env: PROFILES="${PROFILES}" SPARK_BIN=$SPARK_1_6 - - # Build Spark 2.0.2 , Scala 2.11 - replace -D... with profiles when available - - jdk: "openjdk7" - env: PROFILES="${PROFILES} -Dspark.version=2.0.2 -Dscala.version=2.11.8 -Dscala.compat.version=2.11" SPARK_BIN=$SPARK_2_0 - - # Build Spark 2.1.0 , Scala 2.11 - replace -D... with profiles when available - - jdk: "openjdk7" - env: PROFILES="${PROFILES} -Dspark.version=2.1.0 -Dscala.version=2.11.8 -Dscala.compat.version=2.11" SPARK_BIN=$SPARK_2_1 - - # Build Spark 1.6.3 , Scala 2.10, ViennaCL - - jdk: "openjdk7" - env: PROFILES="${PROFILES} -Pviennacl" SPARK_BIN=$SPARK_1_6 - - # Build Spark 2.0.2 , Scala 2.11, ViennaCL - replace -D... with profiles when available - - jdk: "openjdk7" - env: PROFILES="${PROFILES} -Dspark.version=2.0.2 -Dscala.version=2.11.8 -Dscala.compat.version=2.11 -Pviennacl" SPARK_BIN=$SPARK_2_0 - - # Build Spark 2.1.0 , Scala 2.11, ViennaCL - replace -D... with profiles when available - - jdk: "openjdk7" - env: PROFILES="${PROFILES} -Dspark.version=2.1.0 -Dscala.version=2.11.8 -Dscala.compat.version=2.11 -Pviennacl" SPARK_BIN=$SPARK_2_1 - - # Build Spark 1.6.3 , Scala 2.10, ViennaCL-OMP - - jdk: "openjdk7" - env: PROFILES="${PROFILES} -Pviennacl-omp" TEST_MODULES="${TEST_MODULES},viennacl-omp" SPARK_BIN=$SPARK_1_6 - - # Build Spark 2.0.2 , Scala 2.11, ViennaCL-OMP - replace -D... with profiles when available - - jdk: "openjdk7" - env: PROFILES="${PROFILES} -Dspark.version=2.0.2 -Dscala.version=2.11.8 -Dscala.compat.version=2.11 -Pviennacl-omp" TEST_MODULES="${TEST_MODULES},viennacl-omp" SPARK_BIN=$SPARK_2_0 - - # Build Spark 2.1.0 , Scala 2.11, ViennaCL-OMP - replace -D... with profiles when available - - jdk: "openjdk7" - env: PROFILES="${PROFILES} -Dspark.version=2.1.0 -Dscala.version=2.11.8 -Dscala.compat.version=2.11 -Pviennacl-omp" TEST_MODULES="${TEST_MODULES},viennacl-omp" SPARK_BIN=$SPARK_2_1 - -git: - depth: 10 - -#notifications: -# slack: mahout:7vlbihiCBKuhEZK2610jkeeT - -before_install: -# Install Maven 3.3.x+ - - wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip - - unzip -qq apache-maven-3.3.9-bin.zip - - export M2_HOME=$PWD/apache-maven-3.3.9 - - export PATH=$M2_HOME/bin:$PATH - - export MAHOUT_HOME=$PWD - - sudo apt-get -qq update - # Install OpenCL Driver - - sudo apt-get install ocl-icd-libopencl1 - # Install ViennaCL Source - - wget https://github.com/viennacl/viennacl-dev/archive/release-1.7.1.zip - - unzip -qq release-1.7.1.zip - - sudo cp -r viennacl-dev-release-1.7.1/viennacl /usr/include/viennacl - - sudo cp -r viennacl-dev-release-1.7.1/CL /usr/include/CL - # Install SSH Host Client so Spark Pseudo-cluster can start w/out password - - sudo apt-get install openssh-client - - sudo apt-get install openssh-server - - ssh-keygen -t rsa -P "" -f ~/.ssh/id_rsa - - cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys - - -script: - # Build Mahout - - mvn clean package $PROFILES $STANDARD_BUILD_OPTS -DskipTests - # Start Spark - - echo $SPARK_BIN - - wget $SPARK_BIN - - tar -xzf *tgz - - spark*/sbin/start-all.sh - # Run Tests with Master at spark://localhost:7077 - - mvn test -pl $TEST_MODULES $PROFILES -Dtest.spark.master=spark://localhost:7077
