Skip to content

Commit

Permalink
Fixed migration related issues and added some limitations to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
CihatAltiparmak committed Oct 7, 2024
1 parent 2d4a246 commit 50a09ee
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/create_docker_image.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Create Docker Image

on: [push, pull_request, workflow_dispatch]
on:
push:
branches: [ main ]
workflow_dispatch:
schedule:
- cron: '03 5 * * *'

jobs:
build_and_push_docker_image:
Expand All @@ -26,7 +31,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/CihatAltiparmak/moveit_middleware_benchmark
images: ghcr.io/moveit/moveit_middleware_benchmark
flavor: latest=true
- name: Build and push
uses: docker/build-push-action@v6
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/industrial_ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: CI

on: [push, pull_request]
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
schedule:
- cron: '03 5 * * *'

jobs:
industrial_ci:
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/run_benchmarks.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Run MoveIt Middleware Benchmarks

on: [push, pull_request, workflow_dispatch]
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:

jobs:
run_all_benchmarks:
Expand All @@ -12,7 +16,7 @@ jobs:
contents: write
deployments: write
container:
image: ghcr.io/cihataltiparmak/moveit_middleware_benchmark:latest
image: ghcr.io/moveit/moveit_middleware_benchmark:latest
steps:
- name: run benchmarks for rmw_fastrtps
run: |
Expand Down Expand Up @@ -68,7 +72,7 @@ jobs:
auto-push: true
gh-pages-branch: "gh-pages"
benchmark-data-dir-path: "rmw_cyclonedds"
- name: push simple service client benchmark results for rme_cyclonedds to github pages
- name: push simple service client benchmark results for rmw_cyclonedds to github pages
uses: benchmark-action/github-action-benchmark@v1
with:
name: Basic Service Client Benchmark
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: MoveIt Middleware Benchmark Github Action Test

on: [push, pull_request, workflow_dispatch]
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:

jobs:
moveit_middleware_benchmark_github_action_test:
Expand Down

0 comments on commit 50a09ee

Please sign in to comment.