mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
4de784065d
* update E2E tests * fix e2e tests for new pipelines * Add enterprise2 test, build, package and upload steps * fix missing linting step * Upgrade build pipeline tool Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Use grabpl lint-backend Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Refactor publishing Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Refactor package publishing Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Drone: Supply --simulate-release flag to publish-packages for simulating a release Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Drone: Run e2e tests with specific ports Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * e2e/start-server: Make more robust Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
11 lines
241 B
Bash
11 lines
241 B
Bash
#!/bin/bash
|
|
|
|
DEFAULT_RUNDIR=e2e/tmp
|
|
RUNDIR=${RUNDIR:-$DEFAULT_RUNDIR}
|
|
PIDFILE=$RUNDIR/pid
|
|
DEFAULT_PACKAGE_FILE=dist/grafana-*linux-amd64.tar.gz
|
|
PROV_DIR=$RUNDIR/conf/provisioning
|
|
DEFAULT_HOST=localhost
|
|
DEFAULT_PORT=3001
|
|
DEFAULT_SUITE=suite1
|