Skip to content

Commit

Permalink
Set fail-fast param in github action jobs as false (#23)
Browse files Browse the repository at this point in the history
- Github CIes are sometimes failed without any reason
  • Loading branch information
CihatAltiparmak authored Aug 5, 2024
1 parent 6d22560 commit 1a3ce3a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/create_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ jobs:
build_and_push_docker_image:
name: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
permissions:
contents: read
packages: write
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/industrial_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
industrial_ci:
name: ROS ${{ matrix.ROS_DISTRO }} (${{ matrix.ROS_REPO }})
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [rolling]
ROS_REPO: [testing, main]
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/run_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ jobs:
run_middleware_benchmarks:
name: run_benchmarks
runs-on: ubuntu-latest
strategy:
fail-fast: false
permissions:
contents: write
deployments: write
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test_moveit_middleware_benchmark_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ jobs:
moveit_middleware_benchmark_github_action_test:
name: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: ./

0 comments on commit 1a3ce3a

Please sign in to comment.