Skip to content
Snippets Groups Projects
Commit 8390e68e authored by Clark Coleman's avatar Clark Coleman
Browse files

Start adding CICD directories and files.

parent 8acd3ee3
No related branches found
No related tags found
1 merge request!17Stars CICD
#!/bin/bash
set -e
set -x
# update submodules
git submodule sync --recursive
git submodule update --recursive --init
# gather info for debugging later, probably not necessary
pwd
hostname
whoami
env|grep CICD
time rsync -a --exclude='.git' $CICD_TO_TEST_DIR/ /tmp/stars_test
cd /tmp/stars_test
# source set_env_vars
# sudo ./get-peasoup-packages.sh all
# ./build-all.sh
# bash -x ./postgres_setup.sh
#!/bin/bash
set -e
set -x
main()
{
if [[ $CICD_NIGHTLY == 1 ]] ; then
# gather info for debugging later, probably not necessary
pwd
hostname
whoami
env|grep CICD
rm -rf /tmp/stars_test
fi
}
main "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment