Skip to content

Commit

Permalink
Fix CI (#220)
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo González Moreno <[email protected]>
  • Loading branch information
richiware authored Sep 12, 2023
1 parent e9c578a commit c95810b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
9 changes: 3 additions & 6 deletions .github/actions/fetch-fastddsgen-repos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,13 @@ description: 'Fetch Fast DDS dependencies'
inputs:
foonathan-memory-vendor-branch:
description: 'foonathan_memory_vendor branch to be used'
required: false
default: 'master'
required: true
fastcdr-branch:
description: 'Fast-CDR branch to be used'
required: false
default: 'master'
required: true
fastdds-branch:
description: 'Fast-DDS branch to be used'
required: false
default: 'master'
required: true
runs:
using: "composite"
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
- uses: ./src/fastddsgen/.github/actions/install-python-packages
- uses: ./src/fastddsgen/.github/actions/fetch-fastddsgen-repos
with:
foonathan-memory-vendor-branch: '${{ github.event.inputs.foonathan_memory_vendor_branch }}'
fastcdr-branch: '${{ github.event.inputs.fastcdr_branch }}'
fastdds-branch: '${{ github.event.inputs.fastdds_branch }}'
foonathan-memory-vendor-branch: ${{ github.event.inputs.foonathan_memory_vendor_branch || 'master' }}
fastcdr-branch: ${{ github.event.inputs.fastcdr_branch || 'master' }}
fastdds-branch: ${{ github.event.inputs.fastdds_branch || 'master' }}

- name: Get minimum supported version of CMake
uses: lukka/get-cmake@latest
Expand Down

0 comments on commit c95810b

Please sign in to comment.