Skip to content
Snippets Groups Projects
Commit 22eff3a8 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

testing fuzzing

parent 1896c4f5
No related branches found
No related tags found
No related merge requests found
#!/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/libehp_test
cd /tmp/libehp_test
source set_env_vars
scons -j 3
#!/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/libehp_test
fi
}
main "$@"
#!/bin/bash
echo No deploy yet.
#!/bin/bash
echo do nothing yet
#!/bin/bash
set -e
set -x
function main()
{
cd /tmp/libehp_test/test
./test.sh
exit 0
}
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