mirror of
https://github.com/helm/helm.git
synced 2026-02-09 22:04:23 -05:00
* Runtime abstraction to encapsulate subprocess code and enable future runtimes Also fix race condition in TestPrepareCommandExtraArgs by replacing the shared variable modification with a local copy Co-authored-by: George Jenkins <gvjenkins@gmail.com> Signed-off-by: Scott Rigby <scott@r6by.com> * Remove commented out code Co-authored-by: Joe Julian <me@joejulian.name> Signed-off-by: Scott Rigby <scott@r6by.com> * Check test failure string Co-authored-by: Jesse Simpson <jesse.simpson36@gmail.com> Signed-off-by: Scott Rigby <scott@r6by.com> --------- Signed-off-by: Scott Rigby <scott@r6by.com> Co-authored-by: George Jenkins <gvjenkins@gmail.com> Co-authored-by: Joe Julian <me@joejulian.name> Co-authored-by: Jesse Simpson <jesse.simpson36@gmail.com>
22 lines
488 B
YAML
22 lines
488 B
YAML
---
|
|
name: "hello-legacy"
|
|
version: "0.1.0"
|
|
usage: "echo hello message"
|
|
description: |-
|
|
description
|
|
platformCommand:
|
|
- os: linux
|
|
command: "sh"
|
|
args: ["-c", "${HELM_PLUGIN_DIR}/hello.sh"]
|
|
- os: windows
|
|
command: "pwsh"
|
|
args: ["-c", "${HELM_PLUGIN_DIR}/hello.ps1"]
|
|
ignoreFlags: true
|
|
platformHooks:
|
|
install:
|
|
- os: linux
|
|
command: "sh"
|
|
args: ["-c", 'echo "installing..."']
|
|
- os: windows
|
|
command: "pwsh"
|
|
args: ["-c", 'echo "installing..."']
|