-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
48 lines (47 loc) · 1.51 KB
/
action.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: 'install_qt'
description: >
https://github.com/jurplel/install-qt-action
There are more possible inputs used in the original action, but these are the most used by eProsima.
Please, refer to the original action for more information.
inputs:
version:
description: "The desired version of Qt to install"
type: string
default: '5.15.2'
target:
description: "The target platform to install Qt on"
type: string
default: 'desktop'
arch:
description: "The architecture to install Qt for"
type: string
default: 'gcc_64'
dir:
description: "The directory to install Qt in"
install-deps:
description: "Whether to install dependencies"
type: boolean
default: true
modules:
description: "The Qt modules to install"
type: string
default: ''
setup-python:
description: "Whether to setup Python"
type: boolean
default: true
# Other inputs as tools, source, documentation, examples, etc. are not included here, but can be added if needed.
runs:
using: composite
steps:
- name: Install Qt
uses: jurplel/[email protected]
with:
version: ${{ inputs.version }}
target: ${{ inputs.target }}
arch: ${{ inputs.arch }}
dir: ${{ inputs.dir }}
install-deps: ${{ inputs.install-deps }}
modules: ${{ inputs.modules }}
setup-python: ${{ inputs.setup-python }}
# Other inputs as tools, source, documentation, examples, etc. are not included, but can be added if needed.