-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: typo fixes in scripting system. Also, original implementation was…
… way too dependent on what directory it got invoked from; attempting to make it more resilient. Signed-off-by: George Almasi <[email protected]>
- Loading branch information
1 parent
af881f0
commit bb4d5c8
Showing
3 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
#!/bin/bash | ||
|
||
bindir=$(dirname $(realpath $0)) | ||
cd ${bindir}/../../.. | ||
|
||
. ci/util/util_ao.sh | ||
|
||
ao_build . || exit -1 | ||
ao_clean . || exit -1 | ||
ao_deploy . ${PWD}/ci/tests/1_simpletest/values.yml || exit -1 | ||
ao_deploy . ${bindir}/values.yml || exit -1 | ||
ao_wait . || exit -1 | ||
ao_simpletest . || exit -1 | ||
ao_clean . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
#!/bin/bash | ||
|
||
bindir=$(dirname $(realpath $0)) | ||
cd ${bindir}/../../.. | ||
|
||
. ci/util/util_ao.sh | ||
|
||
ao_build . || exit -1 | ||
ao_clean . || exit -1 | ||
ao_deploy . ${PWD}/ci/tests/2_privilegedagent/values.yml || exit -1 | ||
ao_deploy . ${bindir}/values.yml || exit -1 | ||
ao_wait . || exit -1 | ||
ao_simpletest . || exit -1 | ||
ao_clean . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters