-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch collection testing over to oci-env. (#2107)
* Switch collection testing over to oci-env. * Try not re-setting OCI_ENV_PATH ... * Poll the stack. * Move poll to it's own task. * Need the test users. * Use the old container name style. * Not interactive. * Set a max runtime on approval, because it's hanging in github. No-Issue Signed-off-by: James Tanner <[email protected]>
- Loading branch information
Showing
6 changed files
with
67 additions
and
11 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
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
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
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,5 +1,5 @@ | ||
ah_host: http://localhost:5001 | ||
ah_host: http://localhost:55001 | ||
ah_username: iqe_admin | ||
ah_password: redhat | ||
ah_path_prefix: automation-hub | ||
ah_path_prefix: galaxy | ||
ah_artifact_runner_absolute_path: /home/runner/work/galaxy_ng/galaxy_ng/galaxy_collection/galaxy-galaxy-1.0.0.tar.gz |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
set -x | ||
|
||
profile=$1 | ||
echo "USING PROFILE ${profile}" | ||
|
||
# find the oci-env checkout | ||
if [[ -z $OCI_ENV_PATH ]]; then | ||
OCI_ENV_PATH=$(dirname $(pip show oci-env | egrep ^Location | awk '{print $2}')) | ||
fi | ||
echo "FOUND OCI_ENV_PATH: ${OCI_ENV_PATH}" | ||
|
||
export COMPOSE_INTERACTIVE_NO_CLI=1 | ||
env_path=dev/oci_env_integration/oci_env_configs/$profile.compose.env | ||
oci-env -e ${env_path} poll |
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