* run e2e tests as a matrix * add old-suite/ * remove old-arch input * run without quotes * Update codeowners * remove e2e-suite-various from codeowners * ?
72 lines
2.0 KiB
YAML
72 lines
2.0 KiB
YAML
name: End-to-end tests
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release-*.*.*
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-grafana:
|
|
name: Build & Package Grafana
|
|
runs-on: ubuntu-latest-16-cores
|
|
outputs:
|
|
artifact: ${{ steps.artifact.outputs.artifact }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
repository: 'grafana/grafana-build'
|
|
ref: 'main'
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
path: ./grafana
|
|
- run: echo "GRAFANA_GO_VERSION=$(grep "go 1." grafana/go.work | cut -d\ -f2)" >> "$GITHUB_ENV"
|
|
- uses: dagger/dagger-for-github@8.0.0
|
|
with:
|
|
verb: run
|
|
args: go run ./cmd artifacts -a targz:grafana:linux/amd64 --grafana-dir=grafana --go-version=${GRAFANA_GO_VERSION} > out.txt
|
|
- run: mv $(cat out.txt) grafana.tar.gz
|
|
- run: echo "artifact=grafana-e2e-${{github.run_number}}" >> "$GITHUB_OUTPUT"
|
|
id: artifact
|
|
- uses: actions/upload-artifact@v4
|
|
id: upload
|
|
with:
|
|
retention-days: 1
|
|
name: ${{ steps.artifact.outputs.artifact }}
|
|
path: grafana.tar.gz
|
|
e2e-matrix:
|
|
name: ${{ matrix.suite }}
|
|
strategy:
|
|
matrix:
|
|
suite:
|
|
- various-suite
|
|
- dashboards-suite
|
|
- smoke-tests-suite
|
|
- panels-suite
|
|
needs:
|
|
- build-grafana
|
|
uses: ./.github/workflows/run-e2e-suite.yml
|
|
with:
|
|
package: ${{ needs.build-grafana.outputs.artifact }}
|
|
suite: ${{ matrix.suite }}
|
|
e2e-matrix-old-arch:
|
|
name: ${{ matrix.suite }} (old arch)
|
|
strategy:
|
|
matrix:
|
|
suite:
|
|
- old-arch/various-suite
|
|
- old-arch/dashboards-suite
|
|
- old-arch/smoke-tests-suite
|
|
- old-arch/panels-suite
|
|
needs:
|
|
- build-grafana
|
|
uses: ./.github/workflows/run-e2e-suite.yml
|
|
with:
|
|
package: ${{ needs.build-grafana.outputs.artifact }}
|
|
suite: ${{ matrix.suite }}
|