This is an automated email from the ASF dual-hosted git repository. szetszwo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ratis-thirdparty.git
commit ef9debc996554a32726c65261df0aa8a04d482b6 Author: Doroszlai, Attila <[email protected]> AuthorDate: Wed Mar 17 15:08:25 2021 +0100 RATIS-1343. Add basic CI check for ratis-thirdparty (#13) --- .github/workflows/ci.yaml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..09c2d08 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,41 @@ +# 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()
