mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
* Add initial e2e tests for sandboxing * Add tests for sandbox on * Add additional sandbox tests * Move sandbox into various suite * Test drone setup * Move variable * Update drone * Update plugins path for e2e * Revert drone changes * use drone from main * Use lib.star from main * Move sandbox test to its own suite * Expand methods to inject iframes * Restore e2e script * Add back change to script * Update tests for trusted types * Integrate custom plugins into grafana-server * Echo for deubging * add debugging message * Expand message * Add extra for ci * fix path * Improve start-server logic * Remove duplicated logic * Restore file deleted by mistake * Restore file to main p * restore file * Restore start script * Update e2e/panels-suite/frontend-sandbox-panel.spec.ts Co-authored-by: Levente Balogh <balogh.levente.hu@gmail.com> --------- Co-authored-by: Levente Balogh <balogh.levente.hu@gmail.com>
67 lines
1.5 KiB
Bash
Executable File
67 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
. scripts/grafana-server/variables
|
|
|
|
PORT=${PORT:-$DEFAULT_PORT}
|
|
ARCH=${ARCH:-$DEFAULT_ARCH}
|
|
|
|
if [ "$ARCH" ]; then
|
|
ARCH+="/"
|
|
fi
|
|
|
|
./scripts/grafana-server/kill-server
|
|
|
|
mkdir $RUNDIR
|
|
|
|
echo -e "Copying grafana backend files to temp dir..."
|
|
|
|
if [[ ! -f bin/"$ARCH"grafana-server ]]; then
|
|
echo "bin/linux-amd64/grafana-server missing, trying local grafana-server binary"
|
|
fi
|
|
|
|
echo starting server
|
|
|
|
cp -r ./bin $RUNDIR
|
|
cp -r ./public $RUNDIR
|
|
cp -r ./tools $RUNDIR
|
|
|
|
mkdir $RUNDIR/conf
|
|
mkdir $PROV_DIR
|
|
mkdir $PROV_DIR/datasources
|
|
mkdir $PROV_DIR/dashboards
|
|
|
|
cp ./scripts/grafana-server/custom.ini $RUNDIR/conf/custom.ini
|
|
cp ./conf/defaults.ini $RUNDIR/conf/defaults.ini
|
|
|
|
echo -e "Copying custom plugins from e2e tests"
|
|
|
|
mkdir -p "$RUNDIR/data/plugins"
|
|
# when running in a local computer
|
|
if [ -d "./e2e/custom-plugins" ]; then
|
|
cp -r "./e2e/custom-plugins" "$RUNDIR/data/plugins"
|
|
# when running in CI
|
|
elif [ -d "../e2e/custom-plugins" ]; then
|
|
cp -r "../e2e/custom-plugins" "$RUNDIR/data/plugins"
|
|
fi
|
|
|
|
echo -e "Copy provisioning setup from devenv"
|
|
|
|
cp devenv/datasources.yaml $PROV_DIR/datasources
|
|
cp devenv/dashboards.yaml $PROV_DIR/dashboards
|
|
|
|
cp -r devenv $RUNDIR
|
|
|
|
echo -e "Starting Grafana Server port $PORT"
|
|
|
|
$RUNDIR/bin/"$ARCH"grafana-server \
|
|
--homepath=$HOME_PATH \
|
|
--pidfile=$RUNDIR/pid \
|
|
cfg:server.http_port=$PORT \
|
|
cfg:server.router_logging=1 \
|
|
cfg:app_mode=development \
|
|
cfg:enterprise.license_path=$1
|
|
|
|
# 2>&1 > $RUNDIR/output.log &
|
|
# cfg:log.level=debug \
|