You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ratis.apache.org by el...@apache.org on 2020/04/24 09:16:20 UTC

[incubator-ratis] branch master updated: RATIS-697. addendum, build pr the same way as post-commits

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 76963af  RATIS-697. addendum, build pr the same way as post-commits
76963af is described below

commit 76963af68b704d08136fb7275e8528b2549f7e03
Author: Elek Márton <el...@apache.org>
AuthorDate: Fri Apr 24 11:15:22 2020 +0200

    RATIS-697. addendum, build pr the same way as post-commits
---
 .github/workflows/pr.yml | 25 ++++++-------------------
 1 file changed, 6 insertions(+), 19 deletions(-)

diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index c0b5a28..681222c 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -21,17 +21,13 @@ jobs:
     runs-on: ubuntu-18.04
     steps:
       - uses: actions/checkout@master
-      - uses: ./.github/actions/build
-        with:
-          args: ./dev-support/checks/build.sh
+      - run: ./dev-support/checks/build.sh
   rat:
     name: rat
     runs-on: ubuntu-18.04
     steps:
         - uses: actions/checkout@master
-        - uses: ./.github/actions/build
-          with:
-             args: ./dev-support/checks/rat.sh
+        - run: ./dev-support/checks/rat.sh
         - uses: actions/upload-artifact@master
           if: always()
           with:
@@ -42,9 +38,7 @@ jobs:
     runs-on: ubuntu-18.04
     steps:
         - uses: actions/checkout@master
-        - uses: ./.github/actions/build
-          with:
-             args: ./dev-support/checks/author.sh
+        - run: ./dev-support/checks/author.sh
         - uses: actions/upload-artifact@master
           if: always()
           with:
@@ -55,9 +49,7 @@ jobs:
     runs-on: ubuntu-18.04
     steps:
         - uses: actions/checkout@master
-        - uses: ./.github/actions/build
-          with:
-             args: ./dev-support/checks/unit.sh
+        - run: ./dev-support/checks/unit.sh
         - uses: actions/upload-artifact@master
           if: always()
           with:
@@ -68,9 +60,7 @@ jobs:
     runs-on: ubuntu-18.04
     steps:
         - uses: actions/checkout@master
-        - uses: ./.github/actions/build
-          with:
-             args: ./dev-support/checks/checkstyle.sh
+        - run: ./dev-support/checks/checkstyle.sh
         - uses: actions/upload-artifact@master
           if: always()
           with:
@@ -81,12 +71,9 @@ jobs:
     runs-on: ubuntu-18.04
     steps:
         - uses: actions/checkout@master
-        - uses: ./.github/actions/build
-          with:
-             args: ./dev-support/checks/findbugs.sh
+        - run: ./dev-support/checks/findbugs.sh
         - uses: actions/upload-artifact@master
           if: always()
           with:
             name: findbugs
             path: target/findbugs
-