Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
18165097
Unverified
Commit
18165097
authored
3 years ago
by
Ariya Hidayat
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Run selected E2E groups with GitHub Actions (#20266)
parent
195c42a7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/e2e-tests.yml
+127
-0
127 additions, 0 deletions
.github/workflows/e2e-tests.yml
with
127 additions
and
0 deletions
.github/workflows/e2e-tests.yml
0 → 100644
+
127
−
0
View file @
18165097
name
:
E2E Tests
on
:
push
:
branches
:
-
'
master'
jobs
:
build
:
runs-on
:
buildjet-2vcpu-ubuntu-2004
timeout-minutes
:
25
strategy
:
matrix
:
edition
:
[
oss
]
env
:
MB_EDITION
:
${{ matrix.edition }}
INTERACTIVE
:
false
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Prepare front-end environment
uses
:
./.github/actions/prepare-frontend
-
name
:
Prepare back-end environment
uses
:
./.github/actions/prepare-backend
-
name
:
Java/AOT prep
run
:
|
source "./bin/prep.sh"
prep_deps
-
run
:
./bin/build version
-
run
:
./bin/build translations
-
run
:
./bin/build frontend
-
run
:
./bin/build licenses
-
run
:
./bin/build drivers
-
run
:
./bin/build uberjar
-
name
:
Mark with the commit hash
run
:
git rev-parse --short HEAD > COMMIT-ID
-
name
:
Calculate SHA256 checksum
run
:
sha256sum ./target/uberjar/metabase.jar > SHA256.sum
-
name
:
Upload JARs as artifact
uses
:
actions/upload-artifact@v2
with
:
name
:
metabase-${{ matrix.edition }}-uberjar
path
:
|
./target/uberjar/metabase.jar
./COMMIT-ID
./SHA256.sum
e2e-tests
:
runs-on
:
buildjet-2vcpu-ubuntu-2004
timeout-minutes
:
20
needs
:
build
name
:
e2e-tests-${{ matrix.folder }}-${{ matrix.edition }}
env
:
MB_EDITION
:
${{ matrix.edition }}
DISPLAY
:
"
"
QA_DB_ENABLED
:
true
ENTERPRISE_TOKEN
:
${{ secrets.ENTERPRISE_TOKEN }}
strategy
:
fail-fast
:
false
matrix
:
edition
:
[
oss
]
folder
:
-
"
custom-column"
-
"
downloads"
-
"
moderation"
-
"
native"
-
"
smoketest"
services
:
maildev
:
image
:
maildev/maildev
ports
:
-
"
80:80"
-
"
25:25"
postgres-sample
:
image
:
metabase/qa-databases:postgres-sample-12
ports
:
-
"
5432:5432"
mongo-sample
:
image
:
metabase/qa-databases:mongo-sample-4.0
ports
:
-
27017:27017
mysql-sample
:
image
:
metabase/qa-databases:mysql-sample-8
ports
:
-
3306:3306
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Prepare front-end environment
uses
:
./.github/actions/prepare-frontend
-
name
:
Prepare back-end environment
uses
:
./.github/actions/prepare-backend
-
name
:
Get Cypress cache
uses
:
actions/cache@v2
with
:
path
:
~/.cache/Cypress
key
:
${{ runner.os }}-Cypress-${{ hashFiles('**/yarn.lock') }}
-
name
:
Ensure that Cypress executable is ready
run
:
|
yarn cypress install
yarn cypress cache path
yarn cypress cache list
yarn cypress verify
-
uses
:
actions/download-artifact@v2
name
:
Retrieve uberjar artifact for ${{ matrix.edition }}
with
:
name
:
metabase-${{ matrix.edition }}-uberjar
-
name
:
Get the version info
run
:
|
jar xf target/uberjar/metabase.jar version.properties
mv version.properties resources/
-
run
:
yarn run test-cypress-no-build --folder ${{ matrix.folder }}
name
:
Run Cypress tests on ${{ matrix.folder }}
env
:
TERM
:
xterm
-
name
:
Upload Cypress recording upon failure
uses
:
actions/upload-artifact@v2
if
:
failure()
with
:
name
:
cypress-recording-${{ matrix.folder }}-${{ matrix.edition }}
path
:
./cypress
if-no-files-found
:
ignore
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment