You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ratis.apache.org by sz...@apache.org on 2021/03/19 01:17:33 UTC

[ratis-thirdparty] 01/01: Revert "RATIS-1343. Add basic CI check for ratis-thirdparty"

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

szetszwo pushed a commit to branch revert-13-RATIS-1343
in repository https://gitbox.apache.org/repos/asf/ratis-thirdparty.git

commit 030a576a15fd1222cc759029e6abfbde46afcf84
Author: Tsz-Wo Nicholas Sze <sz...@cloudera.com>
AuthorDate: Fri Mar 19 09:17:23 2021 +0800

    Revert "RATIS-1343. Add basic CI check for ratis-thirdparty"
---
 .github/workflows/ci.yaml | 41 -----------------------------------------
 1 file changed, 41 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
deleted file mode 100644
index 09c2d08..0000000
--- a/.github/workflows/ci.yaml
+++ /dev/null
@@ -1,41 +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.
-name: ci
-on:
-  - push
-  - pull_request
-jobs:
-  build:
-    runs-on: ubuntu-18.04
-    steps:
-      - name: Checkout project
-        uses: actions/checkout@v2
-      - name: Cache for Maven dependencies
-        uses: actions/cache@v2
-        with:
-          path: ~/.m2/repository
-          key: maven-repo-${{ hashFiles('**/pom.xml') }}-${{ github.job }}
-          restore-keys: |
-            maven-repo-${{ hashFiles('**/pom.xml') }}
-            maven-repo-
-      - name: Setup Java
-        uses: actions/setup-java@v1
-        with:
-          java-version: 8
-      - name: Run a full build
-        run: mvn clean verify
-      - name: Delete temporary build artifacts
-        run: rm -rf ~/.m2/repository/org/apache/ratis
-        if: always()