Skip to content
Merged
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
2 changes: 1 addition & 1 deletion scripts/travis/configure_dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if [ "${OS}" = "linux" ]; then
fi
set -e
sudo apt-get update -y
sudo apt-get -y install sqlite3
sudo apt-get -y install sqlite3 python3-venv libffi-dev libssl-dev
fi
if [[ "${ARCH}" = "arm" ]]; then
sudo sh -c 'echo "CONF_SWAPSIZE=1024" > /etc/dphys-swapfile; dphys-swapfile setup; dphys-swapfile swapon'
Expand Down
6 changes: 5 additions & 1 deletion scripts/travis/integration_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ export BUILD_TYPE="integration"
if [ "${USER}" = "travis" ]; then
# we're running on a travis machine
"${SCRIPTPATH}/build.sh" --make_debug
GOPATHBIN=$(go env GOPATH)/bin
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it is interesting why it is not set on ARM.

export PATH=$PATH:$GOPATHBIN
"${SCRIPTPATH}/travis_wait.sh" 90 "${SCRIPTPATH}/test.sh"
else
# we're running on an ephermal build machine
"${SCRIPTPATH}/build.sh" --make_debug
GOPATHBIN=$(go env GOPATH)/bin
export PATH=$PATH:$GOPATHBIN
"${SCRIPTPATH}/test.sh"
fi

echo "Integration test completed successfully"
echo "Integration test completed successfully"