Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
order-export-cli
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Workshops
examples
order-export-cli
Merge requests
!1
Introduce semver and static tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Introduce semver and static tests
feature/test-automation
into
master
Overview
0
Commits
2
Pipelines
2
Changes
3
Merged
Introduce semver and static tests
Vadim Justus
requested to merge
feature/test-automation
into
master
Aug 22, 2020
Overview
0
Commits
2
Pipelines
2
Changes
3
0
0
Merge request reports
Compare
master
version 1
19b7f25c
Aug 22, 2020
master (base)
and
latest version
latest version
89524f99
2 commits,
Aug 22, 2020
version 1
19b7f25c
1 commit,
Aug 22, 2020
3 files
+
40
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
.gitlab-ci.yml
0 → 100644
+
38
−
0
View file @ 89524f99
Edit in single-file editor
Open in Web IDE
stages
:
-
static-tests
# Static Tests
semver-tests
:
stage
:
static-tests
tags
:
-
php73
variables
:
EXECUTOR_SUITE
:
module-semver
ALLOWED_CHANGE_LEVEL
:
1
before_script
:
-
~/.composer/vendor/met/test-executor/run.sh setup
script
:
-
~/.composer/vendor/met/test-executor/run.sh tests
after_script
:
-
~/.composer/vendor/met/test-executor/run.sh cleanup
only
:
-
merge_requests
static-tests
:
stage
:
static-tests
tags
:
-
php74
-
mysql80
-
es7
variables
:
EXECUTOR_SUITE
:
module-static
MAGENTO_EDITION
:
community
MAGENTO_VERSION
:
2.4.0
before_script
:
-
~/.composer/vendor/met/test-executor/run.sh setup
script
:
-
~/.composer/vendor/met/test-executor/run.sh tests
after_script
:
-
~/.composer/vendor/met/test-executor/run.sh cleanup
only
:
-
merge_requests
Loading