-
Notifications
You must be signed in to change notification settings - Fork 32
79 lines (79 loc) · 2.63 KB
/
ci_standalone.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
name: CI standalone
defaults:
run:
shell: bash -ieo pipefail {0}
on:
push:
branches:
- master
- devel
pull_request:
# branches:
# - master
# - devel
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'info'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Test scenario tags'
required: false
type: boolean
jobs:
build_dependencies:
uses: ./.github/workflows/build_dependencies.yml
hsr:
needs: [ build_dependencies ]
uses: ./.github/workflows/reusable_robot_ci.yml
with:
robot: hsr
test1: test/test_integration_hsr.py::TestJointGoals
test2: test/test_integration_hsr.py::TestCollisionAvoidanceGoals
test3: test/test_integration_hsr.py::TestConstraints
donbot:
needs: [ build_dependencies ]
uses: ./.github/workflows/reusable_robot_ci.yml
with:
robot: donbot
test1: test/test_integration_donbot.py::TestCartGoals
test2: test/test_integration_donbot.py::TestConstraints
test3: test/test_integration_donbot.py::TestJointGoals
pr2_part1:
needs: [ build_dependencies ]
uses: ./.github/workflows/reusable_robot_ci.yml
with:
robot: pr2
test1: test/test_integration_pr2.py::TestConstraints
test2: test/test_integration_pr2.py::TestCartGoals
test3: test/test_integration_pr2.py::TestWorldManipulation
test4: test/test_integration_pr2.py::TestManipulability::test_manip1
test5: test/test_integration_pr2.py::TestWeightScaling
test6: test/test_integration_pr2.py::TestFeatureFunctions
test7: test/test_integration_pr2.py::TestEndMotionReason
pr2_part2:
needs: [ build_dependencies ]
uses: ./.github/workflows/reusable_robot_ci.yml
with:
robot: pr2
test1: test/test_integration_pr2.py::TestCollisionAvoidanceGoals
test2: test/test_integration_pr2.py::TestWorld
test3: test/test_integration_pr2.py::TestSelfCollisionAvoidance
test4: test/test_integration_pr2.py::TestInfoServices
test5: test/test_integration_pr2.py::TestJointGoals
test6: test/test_integration_pr2.py::TestMonitors
tiago:
needs: [ build_dependencies ]
uses: ./.github/workflows/reusable_robot_ci.yml
with:
robot: tiago
test1: test/test_integration_tiago_stand_alone.py::TestConstraints
test2: test/test_integration_tiago_stand_alone.py::TestJointGoals
test3: test/test_integration_tiago_stand_alone.py::TestCollisionAvoidance
test4: test/test_integration_tiago_stand_alone.py::TestCartGoals