forked from cerc-io/stack-orchestrator
26 lines
840 B
Bash
Executable File
26 lines
840 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
|
|
set -x
|
|
fi
|
|
|
|
stack=mobymask-v3-demo
|
|
|
|
# Test stack build
|
|
echo "Running stack-orchestrator deploy test"
|
|
# Bit of a hack, test the most recent package
|
|
TEST_TARGET_SO=$( ls -t1 ./package/laconic-so* | head -1 )
|
|
# Set a non-default repo dir
|
|
export CERC_REPO_BASE_DIR=~/stack-orchestrator-test/repo-base-dir
|
|
echo "Testing this package: $TEST_TARGET_SO"
|
|
echo "Test version command"
|
|
reported_version_string=$( $TEST_TARGET_SO version )
|
|
echo "Version reported is: ${reported_version_string}"
|
|
echo "Cloning repositories into: $CERC_REPO_BASE_DIR"
|
|
rm -rf $CERC_REPO_BASE_DIR
|
|
mkdir -p $CERC_REPO_BASE_DIR
|
|
# Test bringing the test container up and down
|
|
# with and without volume removal
|
|
$TEST_TARGET_SO --stack ${stack} setup-repositories
|
|
$TEST_TARGET_SO --stack ${stack} build-containers
|