Skip to content

Commit d16b58a

Browse files
authored
Merge pull request #12 from PickNikRobotics/runner-input
feat: add runner input so you can specify your own runners
2 parents ff044bb + e0b3f07 commit d16b58a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/workspace_integration_test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ on:
1515
colcon_test_args:
1616
type: string
1717
default: ""
18+
runner:
19+
type: string
20+
default: "studio_16_core_runner"
21+
1822
secrets:
1923
studio_license_key:
2024
required: false
@@ -28,7 +32,7 @@ jobs:
2832
- uses: actions/checkout@v4
2933
integration-test-in-studio-container:
3034
needs: setup
31-
runs-on: studio_16_core_runner
35+
runs-on: ${{ inputs.runner }}
3236
env:
3337
STUDIO_LICENSE_KEY: ${{ secrets.studio_license_key || secrets.STUDIO_CI_LICENSE_KEY }}
3438
RMW_IMPLEMENTATION: rmw_cyclonedds_cpp

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,5 @@ All input args:
3333
- Note: we recommend creating branch names that match the MoveIt Pro container image tags, such as `8.1.0`, `8.2.0`, etc for your versioned out production robot applications.
3434
- `config_package`: The name of the MoveIt Pro config package to test. This is only required when using a matrix to run tests in parallel.
3535
- `colcon_build_args`: Additional colcon arguments to pass to the `colcon build` command.
36-
-` colcon_test_args`: Additional colcon arguments to pass to the `colcon test` command.
36+
- `colcon_test_args`: Additional colcon arguments to pass to the `colcon test` command.
37+
- `runner`: A runner to be passed and run the integration tests.

0 commit comments

Comments
 (0)