-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstep.yml
executable file
·84 lines (84 loc) · 2.44 KB
/
step.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
title: "Cake Script"
summary: Cake (C# Make) is a cross platform build automation system
description: |-
Cake (C# Make) is a cross platform build automation system with a C# DSL to do things like compiling code,
copy files/folders, running unit tests, compress files and build NuGet packages.
More info: https://cakebuild.net/
website: https://github.com/cake-build/bitrise-cake-step
source_code_url: https://github.com/cake-build/bitrise-cake-step
support_url: https://github.com/cake-build/bitrise-cake-step/issues
host_os_tags:
- osx-10.10
project_type_tags:
- xamarin
type_tags:
- build
is_requires_admin_user: false
is_always_run: false
is_skippable: false
inputs:
- script: build.cake
opts:
title: "Script"
description: |
Name of the script to execute. Default is build.cake
is_expand: true
is_required: true
- target: Default
opts:
title: "Target"
description: |
Target name to execute. Default is Default
is_expand: true
is_required: true
- configuration: Release
opts:
title: "Configuration"
description: |
Configuration to build. Default is Release.
is_expand: true
is_required: true
- verbosity: normal
opts:
title: "Verbosity"
description: |
Specifies the amount of information to be displayed (quiet, minimal, normal, verbose, diagnostic).
is_expand: true
is_required: true
value_options:
- quiet
- minimal
- normal
- verbose
- diagnostic
- custom_args:
opts:
title: "Custom arguments"
description: |
Custom arguments to add to the build script
is_expand: false
is_required: false
- nuget_source_name:
opts:
title: "NuGet private source name"
summary: ""
description: |
Name to use for specified NuGet private source in the NuGet source list.
- nuget_source_path_or_url:
opts:
title: "NuGet private source path / url"
summary: ""
description: |
Path or URL of the NuGet private package(s) source.
- nuget_source_username:
opts:
title: "NuGet private source username"
summary: ""
description: |
UserName to be used when connecting to an authenticated source.
- nuget_source_password:
opts:
title: "NuGet private source password"
summary: ""
description: |
Password to be used when connecting to an authenticated source.