Windows with YAML
YAML Parameters for Windows
Name | Type | Description |
---|
action
Required | String | The ID of the action. |
type
Required | String | The type of the action. Should be set to NATIVE_BUILD_WINDOWS . |
working_directory
Required | String | The directory in which the pipeline filesystem will be mounted. |
commands
Required | String[] | The commands that will be executed. |
execute_every_command | Boolean | If set to true all commands will be executed regardless of the result of the previous command. |
sync_paths | SyncPath[] | Define file paths that should be copied before PIPELINE_TO_VM and after the execution VM_TO_PIPELINE . |
YAML example for Windows
actions:
- action: "Execute: msbuild"
type: "NATIVE_BUILD_WINDOWS"
working_directory: "c:\\\\buddy"
commands:
- "nuget restore"
- "msbuild"
trigger_condition: "ALWAYS"
execute_every_command: true
sync_paths:
- pipeline_path: "/"
vm_path: "c:\\buddy"
direction: "VM_TO_PIPELINE"
- pipeline_path: "/"
vm_path: "c:\\buddy"
direction: "PIPELINE_TO_VM"
Sign up for Buddy Digest
Best practices on CI/CD and fresh changelogs delivered weekly to your inbox.