fix: Allow custom MYGOBIN in mdrip invokations

This commit is contained in:
Petr Studeny
2021-07-13 14:34:50 +02:00
parent 259fcfcef8
commit ab9b010856
2 changed files with 2 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ chart repository.
This example defines the `helm` command as This example defines the `helm` command as
<!-- @defineHelmCommand @testHelm --> <!-- @defineHelmCommand @testHelm -->
``` ```
helmCommand=~/go/bin/helmV3 helmCommand=${MYGOBIN:-~/go/bin}/helmV3
``` ```
This value is needed for testing this example in CI/CD. This value is needed for testing this example in CI/CD.

View File

@@ -29,6 +29,7 @@ fi
# We test against the latest release, and HEAD, and presumably # We test against the latest release, and HEAD, and presumably
# any branch using this label, so it should probably get # any branch using this label, so it should probably get
# a new value. # a new value.
export MYGOBIN
mdrip --mode test --blockTimeOut 15m \ mdrip --mode test --blockTimeOut 15m \
--label testAgainstLatestRelease examples --label testAgainstLatestRelease examples