mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
64877baa82
* e2e: Trying to get end-2-end tests to run on PRs * Probably need quotes here * Change back to machine * CI: only build amd64 docker * lowercase docker image name * Fixed docker image name * added end-to-end-test * Fixed paths * Added setup_remote_docker * Updated * Minor tweak * update * Testing * UpdateD# * Making some progress * Update * Updated * update * Updated * Updated * testing * Updated * Updated * Updated * Updated * updated * Changed image * Updated image * updated * Addd logging * trying one more thing * Fixed build-fast-frontend * Updated * Added devenv to end-to-end server setup * removed file * Updated * Minor change * Fixes * Updated workspace, and tried to make naming and paths compatible with master & release jobs * fixed syntax issue * Updated truth * Fixed path
12 lines
173 B
Bash
Executable File
12 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. e2e/variables
|
|
|
|
if [ -f "$PIDFILE" ]; then
|
|
echo -e "Found pidfile, killing running grafana-server"
|
|
kill -9 `cat $PIDFILE`
|
|
rm $PIDFILE
|
|
fi
|
|
|
|
rm -rf e2e/tmp
|