Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 0 additions & 55 deletions actions/e2e_tests.meta.yaml

This file was deleted.

10 changes: 5 additions & 5 deletions actions/setup_e2e_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ fi
PIP="pip"

# Install OS specific pre-reqs (Better moved to puppet at some point.)
DEBTEST=`lsb_release -a 2> /dev/null | grep Distributor | awk '{print $3}'`
RHTEST=`cat /etc/redhat-release 2> /dev/null | sed -e "s~\(.*\)release.*~\1~g"`
DEBTEST=$(lsb_release -a 2> /dev/null | grep Distributor | awk '{print $3}')
RHTEST=$(cat /etc/redhat-release 2> /dev/null | sed -e "s~\(.*\)release.*~\1~g")

# Decrease interval for MongoDB TTL expire thread. By default it runs every 60 seconds which
# means we would need to wait at least 60 seconds in our key expire end to end tests.
Expand All @@ -29,7 +29,7 @@ echo -e "\nsetParameter:\n ttlMonitorSleepSecs: 1" | sudo tee -a /etc/mongod.co
sudo cat /etc/mongod.conf

if [[ -n "$RHTEST" ]]; then
RHVERSION=`cat /etc/redhat-release 2> /dev/null | sed -r 's/([^0-9]*([0-9]*)){1}.*/\2/'`
RHVERSION=$(cat /etc/redhat-release 2> /dev/null | sed -r 's/([^0-9]*([0-9]*)){1}.*/\2/')
echo "*** Detected Distro is ${RHTEST} - ${RHVERSION} ***"

echo "Restarting MongoDB..."
Expand Down Expand Up @@ -65,8 +65,8 @@ if [[ -n "$RHTEST" ]]; then
git clone --branch add_per_test_timing_information --depth 1 https://github.com/Kami/bats-core.git
(cd bats-core; sudo ./install.sh /usr/local)
elif [[ -n "$DEBTEST" ]]; then
DEBVERSION=`lsb_release --release | awk '{ print $2 }'`
SUBTYPE=`lsb_release -a 2>&1 | grep Codename | grep -v "LSB" | awk '{print $2}'`
DEBVERSION=$(lsb_release --release | awk '{ print $2 }')
SUBTYPE=$(lsb_release -a 2>&1 | grep Codename | grep -v "LSB" | awk '{print $2}')
echo "*** Detected Distro is ${DEBTEST} - ${DEBVERSION} ***"

echo "Restarting MongoDB..."
Expand Down
300 changes: 0 additions & 300 deletions actions/workflows/e2e_tests.yaml

This file was deleted.

Loading