Skip to content

Commit

Permalink
Fixed migration relavant issues and added some limitations to CI (#42)
Browse files Browse the repository at this point in the history
* Fixed migration related issues and added some limitations to CI

* Fix some overlooked parts
CihatAltiparmak authored Nov 5, 2024
1 parent 16971be commit eda9ff1
Showing 7 changed files with 29 additions and 10 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:
@@ -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
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:
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:
@@ -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: |
@@ -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
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:
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ RUN mkdir ws/src -p

RUN . /opt/ros/rolling/setup.sh && \
cd ${ROS_UNDERLAY}/../src && \
git clone https://github.com/CihatAltiparmak/moveit_middleware_benchmark.git && \
git clone https://github.com/moveit/moveit_middleware_benchmark.git && \
vcs import < moveit_middleware_benchmark/moveit_middleware_benchmark.repos --recursive

RUN . /opt/ros/rolling/setup.sh && \
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

Under Construction

[![CI (Rolling)](https://github.com/CihatAltiparmak/moveit_middleware_benchmark/actions/workflows/industrial_ci.yml/badge.svg?branch=main)](https://github.com/CihatAltiparmak/moveit_middleware_benchmark/actions/workflows/industrial_ci.yml?query=branch%3Amain)
[![CI (Rolling)](https://github.com/moveit/moveit_middleware_benchmark/actions/workflows/industrial_ci.yml/badge.svg?branch=main)](https://github.com/moveit/moveit_middleware_benchmark/actions/workflows/industrial_ci.yml?query=branch%3Amain)

*Middleware Benchmark Tool For MoveIt2*

2 changes: 1 addition & 1 deletion docs/how_to_install.md
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ mkdir ws/src -p
cd ws/src

# clone this repository
git clone git@github.com:CihatAltiparmak/moveit_middleware_benchmark.git
git clone https://github.com/moveit/moveit_middleware_benchmark.git
vsc import moveit_middleware_benchmark/moveit_middleware_benchmark.repos --recursive

# build the workspace

0 comments on commit eda9ff1

Please sign in to comment.