-
Notifications
You must be signed in to change notification settings - Fork 1
82 lines (79 loc) · 3.73 KB
/
run_benchmarks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Run MoveIt Middleware Benchmarks
on: [push, pull_request, workflow_dispatch]
jobs:
run_all_benchmarks:
name: run_all_benchmarks
runs-on: ubuntu-latest
strategy:
fail-fast: false
permissions:
contents: write
deployments: write
container:
image: ghcr.io/cihataltiparmak/moveit_middleware_benchmark:latest
steps:
- name: run benchmarks for rmw_fastrtps
run: |
cd ${ROS_UNDERLAY}/..
. /opt/ros/rolling/setup.sh
. install/setup.sh
sh src/moveit_middleware_benchmark/scripts/run_all_benchmarks.sh -i ./src/moveit_middleware_benchmark/middleware_configurations/rmw_fastrtps/config_rmw_fastrtps.sh -d /benchmark_results -m rmw_fastrtps_cpp
- name: run benchmarks for rmw_cyclonedds
run: |
cd ${ROS_UNDERLAY}/..
. /opt/ros/rolling/setup.sh
. install/setup.sh
sh src/moveit_middleware_benchmark/scripts/run_all_benchmarks.sh -i ./src/moveit_middleware_benchmark/middleware_configurations/rmw_cyclonedds/config_rmw_cyclonedds.sh -d /benchmark_results -m rmw_cyclonedds_cpp
- name: clone repo
uses: actions/checkout@v3
- name: add to safe directory
run: |
git config --global --add safe.directory /__w/moveit_middleware_benchmark/moveit_middleware_benchmark
- name: push perception benchmark results for rmw_fastrtps to github pages
uses: benchmark-action/github-action-benchmark@v1
with:
name: Perception Pipeline Benchmark
tool: 'googlecpp'
output-file-path: /benchmark_results/scenario_perception_pipeline/rmw_fastrtps_cpp.json
# Access token to deploy GitHub Pages branch
github-token: ${{ secrets.GITHUB_TOKEN }}
# Push and deploy GitHub pages branch automatically
auto-push: true
gh-pages-branch: "gh-pages"
benchmark-data-dir-path: "rmw_fastrtps"
- name: push simple service client benchmark results for rmw_fastrtps to github pages
uses: benchmark-action/github-action-benchmark@v1
with:
name: Basic Service Client Benchmark
tool: 'googlecpp'
output-file-path: /benchmark_results/scenario_basic_service_client/rmw_fastrtps_cpp.json
# Access token to deploy GitHub Pages branch
github-token: ${{ secrets.GITHUB_TOKEN }}
# Push and deploy GitHub pages branch automatically
auto-push: true
gh-pages-branch: "gh-pages"
benchmark-data-dir-path: "rmw_fastrtps"
- name: push perception benchmark results for rmw_cyclonedds to github pages
uses: benchmark-action/github-action-benchmark@v1
with:
name: Perception Pipeline Benchmark
tool: 'googlecpp'
output-file-path: /benchmark_results/scenario_perception_pipeline/rmw_cyclonedds_cpp.json
# Access token to deploy GitHub Pages branch
github-token: ${{ secrets.GITHUB_TOKEN }}
# Push and deploy GitHub pages branch automatically
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
uses: benchmark-action/github-action-benchmark@v1
with:
name: Basic Service Client Benchmark
tool: 'googlecpp'
output-file-path: /benchmark_results/scenario_basic_service_client/rmw_cyclonedds_cpp.json
# Access token to deploy GitHub Pages branch
github-token: ${{ secrets.GITHUB_TOKEN }}
# Push and deploy GitHub pages branch automatically
auto-push: true
gh-pages-branch: "gh-pages"
benchmark-data-dir-path: "rmw_cyclonedds"