Set TopicDataType name before registering types in DomainParticipant #681
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tests to run with workflow-dispatch, pull-request and push events | |
name: test | |
on: | |
workflow_dispatch: | |
inputs: | |
custom_version_build: | |
description: > | |
Use the custom version build from eProsima-CI. | |
If set to false, the workflow will run the tests for Fast DDS v2 and v3. | |
required: true | |
type: choice | |
default: 'custom' | |
options: | |
- custom | |
- v2 | |
- v3 | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
reusable_tests: | |
name: reusable_tests | |
uses: ./.github/workflows/reusable-workflow.yml | |
with: | |
custom_version_build: ${{ inputs.custom_version_build || 'v3' }} | |
ref: ${{ github.ref }} | |
secrets: inherit |