-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (26 loc) · 902 Bytes
/
action.yml
File metadata and controls
31 lines (26 loc) · 902 Bytes
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
name: install_yamlcpp
description: Install and setup yaml-cpp for linking and building in Windows
inputs:
cmake_build_type:
description: Specify the build type on single-configuration generators
required: true
default: Release
version:
description: 'Specify yamlcpp branch to download repository from https://github.com/jbeder/yaml-cpp'
required: false
default: 'yaml-cpp-0.7.0'
runs:
using: composite
steps:
- name: Run in ubuntu
uses: eProsima/eProsima-CI/ubuntu/install_yamlcpp@main
if: runner.os == 'Linux'
with:
cmake_build_type: ${{ inputs.cmake_build_type }}
version: ${{ inputs.version }}
- name: Run in windows
uses: eProsima/eProsima-CI/windows/install_yamlcpp@main
if: runner.os == 'Windows'
with:
cmake_build_type: ${{ inputs.cmake_build_type }}
version: ${{ inputs.version }}