You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ozone.apache.org by ad...@apache.org on 2022/03/21 20:14:19 UTC

[ozone] branch master updated: HDDS-6464. Turn off cross-check fail-fast for CI (#3208)

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

adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git


The following commit(s) were added to refs/heads/master by this push:
     new 6408198  HDDS-6464. Turn off cross-check fail-fast for CI (#3208)
6408198 is described below

commit 64081985ab6bcd219b72107859c652f52ac9b125
Author: Doroszlai, Attila <64...@users.noreply.github.com>
AuthorDate: Mon Mar 21 21:13:58 2022 +0100

    HDDS-6464. Turn off cross-check fail-fast for CI (#3208)
---
 .github/workflows/cancel-ci.yaml  | 33 ---------------------------------
 .github/workflows/post-commit.yml |  8 ++++----
 2 files changed, 4 insertions(+), 37 deletions(-)

diff --git a/.github/workflows/cancel-ci.yaml b/.github/workflows/cancel-ci.yaml
deleted file mode 100644
index 79aa95b..0000000
--- a/.github/workflows/cancel-ci.yaml
+++ /dev/null
@@ -1,33 +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: Cancelling
-on:
-  workflow_run:
-    workflows: ['build-branch']
-    types: ['requested']
-
-jobs:
-  cancel:
-    runs-on: ubuntu-18.04
-    steps:
-      - uses: potiuk/cancel-workflow-runs@a81b3c4d59c61e27484cfacdc13897dd908419c9
-        name: "Cancel failing PR builds"
-        with:
-          cancelMode: failedJobs
-          token: ${{ secrets.GITHUB_TOKEN }}
-          skipEventTypes: '["push", "schedule"]'
-          jobNameRegexps: '["^.*$"]'
-          workflowFileName: post-commit.yml
diff --git a/.github/workflows/post-commit.yml b/.github/workflows/post-commit.yml
index c8a36be..e84fa29 100644
--- a/.github/workflows/post-commit.yml
+++ b/.github/workflows/post-commit.yml
@@ -72,7 +72,7 @@ jobs:
     strategy:
       matrix:
         java: [ 8, 11 ]
-      fail-fast: ${{ github.event_name == 'pull_request' }}
+      fail-fast: false
     steps:
       - name: Checkout project
         uses: actions/checkout@v2
@@ -121,7 +121,7 @@ jobs:
     strategy:
       matrix:
         check: ${{ fromJson(needs.build-info.outputs.basic-checks) }}
-      fail-fast: ${{ github.event_name == 'pull_request' }}
+      fail-fast: false
     steps:
       - name: Checkout project
         uses: actions/checkout@v2
@@ -203,7 +203,7 @@ jobs:
           - HA
           - MR
           - misc
-      fail-fast: ${{ github.event_name == 'pull_request' }}
+      fail-fast: false
     steps:
       - name: Checkout project
         uses: actions/checkout@v2
@@ -278,7 +278,7 @@ jobs:
           - filesystem-hdds
           - ozone
           - flaky
-      fail-fast: ${{ github.event_name == 'pull_request' }}
+      fail-fast: false
     steps:
       - name: Checkout project
         uses: actions/checkout@v2

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