You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pekko.apache.org by se...@apache.org on 2022/11/05 19:10:40 UTC

[incubator-pekko] branch main updated: Fix nightly build action (#19)

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

seanglover pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko.git


The following commit(s) were added to refs/heads/main by this push:
     new d0f28828dc Fix nightly build action (#19)
d0f28828dc is described below

commit d0f28828dc732d16f1c0dbfb83f7b9a26d2f2a90
Author: Sean Glover <se...@seanglover.com>
AuthorDate: Sat Nov 5 15:10:35 2022 -0400

    Fix nightly build action (#19)
---
 .github/workflows/nightly-builds.yml | 58 +++++++++++++++++++-----------------
 1 file changed, 30 insertions(+), 28 deletions(-)

diff --git a/.github/workflows/nightly-builds.yml b/.github/workflows/nightly-builds.yml
index 6f10b1b56f..fcb0c58a84 100644
--- a/.github/workflows/nightly-builds.yml
+++ b/.github/workflows/nightly-builds.yml
@@ -7,8 +7,8 @@ on:
 
 jobs:
 
-  akka-cluster-metrics-sigar:
-    name: Akka Cluster Metrics Test with Sigar
+  pekko-cluster-metrics-sigar:
+    name: Pekko Cluster Metrics Test with Sigar
     runs-on: ubuntu-20.04
     if: github.repository == 'apache/incubator-pekko'
     steps:
@@ -43,14 +43,15 @@ jobs:
             -Dmultinode.XX:+AlwaysActAsServerClassMachine \
             clean akka-cluster-metrics/test
 
-      - name: Test Reports
-        # Makes it easier to spot failures instead of looking at the logs.
-        if: ${{ failure() }}
-        uses: marcospereira/action-surefire-report@v1
-        with:
-          report_paths: '**/target/test-reports/TEST-*.xml'
-          fail_if_no_tests: false
-          skip_publishing: true
+# comment out test report until an apache or GitHub published action (action-surefire-report) can be found or added allowlist from INFRA
+#      - name: Test Reports
+#        # Makes it easier to spot failures instead of looking at the logs.
+#        if: ${{ failure() }}
+#        uses: marcospereira/action-surefire-report@v1
+#        with:
+#          report_paths: '**/target/test-reports/TEST-*.xml'
+#          fail_if_no_tests: false
+#          skip_publishing: true
 
       # comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
       #- name: Email on failure
@@ -68,8 +69,8 @@ jobs:
       #      Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
       #      https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
 
-  akka-classic-remoting-tests:
-    name: Akka Classic Remoting Tests
+  pekko-classic-remoting-tests:
+    name: Pekko Classic Remoting Tests
     runs-on: ubuntu-20.04
     if: github.repository == 'apache/incubator-pekko'
     strategy:
@@ -169,21 +170,22 @@ jobs:
             ${{ matrix.extraOpts }} \
             clean "+~ ${{ matrix.scalaVersion }} test" checkTestsHaveRun
 
-      - name: Test Reports
-        # Makes it easier to spot failures instead of looking at the logs.
-        if: ${{ failure() }}
-        uses: marcospereira/action-surefire-report@v1
-        with:
-          report_paths: '**/target/test-reports/TEST-*.xml'
-          fail_if_no_tests: false
+# comment out test report until an apache or GitHub published action (action-surefire-report) can be found or added allowlist from INFRA
+#      - name: Test Reports
+#        # Makes it easier to spot failures instead of looking at the logs.
+#        if: ${{ failure() }}
+#        uses: marcospereira/action-surefire-report@v1
+#        with:
+#          report_paths: '**/target/test-reports/TEST-*.xml'
+#          fail_if_no_tests: false
 
-      # Archive test results so we can do some diagnostics later
-      - name: Upload test results
-        uses: actions/upload-artifact@v2
-        if: success() || failure()        # run this step even if previous step failed
-        with:
-          name: test-results-${{ matrix.jdkVersion }}-${{ matrix.scalaVersion }}
-          path: '**/target/test-reports/TEST-*.xml'
+#      # Archive test results so we can do some diagnostics later
+#      - name: Upload test results
+#        uses: actions/upload-artifact@v2
+#        if: success() || failure()        # run this step even if previous step failed
+#        with:
+#          name: test-results-${{ matrix.jdkVersion }}-${{ matrix.scalaVersion }}
+#          path: '**/target/test-reports/TEST-*.xml'
 
       - name: Docs
         # Docs generation requires JDK 11. Checks with `startsWith` helps
@@ -221,8 +223,8 @@ jobs:
       #      Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
       #      https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
 
-  akka-artery-aeron-tests:
-    name: Akka Artery Aeron Tests
+  pekko-artery-aeron-tests:
+    name: Pekko Artery Aeron Tests
     runs-on: ubuntu-20.04
     if: github.repository == 'apache/incubator-pekko'
     strategy:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pekko.apache.org
For additional commands, e-mail: commits-help@pekko.apache.org