From commits-return-874-archive-asf-public=cust-asf.ponee.io@mnemonic.apache.org Mon Feb 8 04:01:20 2021 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-ec2-va.apache.org (mxout1-ec2-va.apache.org [3.227.148.255]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 6383718062C for ; Mon, 8 Feb 2021 05:01:20 +0100 (CET) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-ec2-va.apache.org (ASF Mail Server at mxout1-ec2-va.apache.org) with SMTP id A1572428E6 for ; Mon, 8 Feb 2021 04:01:19 +0000 (UTC) Received: (qmail 92168 invoked by uid 500); 8 Feb 2021 04:01:18 -0000 Mailing-List: contact commits-help@mnemonic.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mnemonic.apache.org Delivered-To: mailing list commits@mnemonic.apache.org Received: (qmail 92152 invoked by uid 99); 8 Feb 2021 04:01:18 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2021 04:01:18 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id D599981F9F; Mon, 8 Feb 2021 04:01:17 +0000 (UTC) Date: Mon, 08 Feb 2021 04:01:17 +0000 To: "commits@mnemonic.apache.org" Subject: [mnemonic] branch master updated: MNEMONIC-607: Remove Travis-CI from project MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <161275687763.15742.22849586325717999@gitbox.apache.org> From: yzhao@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: mnemonic X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 8d98d837ac9554449d1f8328a41a7206a85d673c X-Git-Newrev: 46510316bee1a61e8218a4aca4fef9dd380d03ba X-Git-Rev: 46510316bee1a61e8218a4aca4fef9dd380d03ba X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. yzhao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mnemonic.git The following commit(s) were added to refs/heads/master by this push: new 4651031 MNEMONIC-607: Remove Travis-CI from project 4651031 is described below commit 46510316bee1a61e8218a4aca4fef9dd380d03ba Author: Xiaojin Jiao AuthorDate: Sat Feb 6 21:16:10 2021 -0800 MNEMONIC-607: Remove Travis-CI from project Signed-off-by: Xiaojin Jiao --- .travis.yml | 42 ------------------------------------------ 1 file changed, 42 deletions(-) diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index aca77e6..0000000 --- a/.travis.yml +++ /dev/null @@ -1,42 +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 -language: python -python: - - 2.7 - -services: - - docker - -branches: - only: - - master - -before_install: - - docker pull mnemonic/mneci:v2 - - docker images - -install: - - pip install mock - -script: - - ls -l $TRAVIS_BUILD_DIR - - docker run -v $TRAVIS_BUILD_DIR:/ws/mnemonic --rm -t mnemonic/mneci:v2 /bin/bash -c "cd /ws/mnemonic; git log -1 --stat; git clean -xdf; mvn clean install && mvn javadoc:javadoc" -# the runall cannot be fulfilled using free plan since it needs more resource to run. -# - docker run -v $TRAVIS_BUILD_DIR:/ws/mnemonic --rm -t mnemonic/mneci:v2 /bin/bash -c "cd /ws/mnemonic; git log -1 --stat; bin/runall.sh"