Skip to content

Commit cbc6c24

Browse files
Fix windows CI: Avoid usage of removed action (#228)
Signed-off-by: JesusPoderoso <[email protected]>
1 parent 00d7f2d commit cbc6c24

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/reusable-ci.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ on:
4949
default: false
5050
env:
5151
toolset: ${{ inputs.vs-toolset && format('-T {0}', inputs.vs-toolset) || '' }}
52-
test-meta: ${{ inputs.os-version == 'windows-2019' && format('{0}/src/fastcdr/.github/workflows/config/build_test.meta', github.workspace) || format('{0}/src/fastcdr/.github/workflows/config/build.meta {0}/src/fastcdr/.github/workflows/config/test.meta', github.workspace) }}
5352
defaults:
5453
run:
5554
shell: bash
@@ -122,19 +121,12 @@ jobs:
122121
cmake_build_type: ${{ matrix.cmake-build-type }}
123122
workspace: ${{ github.workspace }}
124123

125-
- name: Prepare build test meta file
126-
if: ${{ inputs.run-tests == true && inputs.os-version == 'windows-2019' }}
127-
uses: eProsima/eProsima-CI/windows/merge_yaml_metas@v0
128-
with:
129-
metas: "@('${{ github.workspace }}/src/fastcdr/.github/workflows/config/build.meta', '${{ github.workspace }}/src/fastcdr/.github/workflows/config/test.meta')"
130-
path: '${{ github.workspace }}/src/fastcdr/.github/workflows/config/build_test.meta'
131-
132124
- name: Colcon test
133125
id: test_fastcdr
134126
if: ${{ inputs.run-tests == true }}
135127
uses: eProsima/eProsima-CI/multiplatform/colcon_test@v0
136128
with:
137-
colcon_meta_file: ${{ env.test-meta }}
129+
colcon_meta_file: ${{ github.workspace }}/src/fastcdr/.github/workflows/config/build.meta ${{ github.workspace }}/src/fastcdr/.github/workflows/config/test.meta
138130
colcon_test_args_default: --event-handlers=console_direct+
139131
ctest_args: ${{ inputs.ctest-args }}
140132
packages_names: fastcdr

0 commit comments

Comments
 (0)