Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tables
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
Container Registry
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
grifart libs
tables
Merge requests
!53
ci: test on all supported versions of php
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ci: test on all supported versions of php
ci-php-versions
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Jiří Pudil
requested to merge
ci-php-versions
into
master
9 months ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
861431c8
1 commit,
9 months ago
1 file
+
37
−
26
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
37
−
26
Options
@@ -2,9 +2,8 @@ stages:
-
install
-
test
install
:
.
install
:
stage
:
install
image
:
grifart/php8.1-with-all-modules-and-various-tools
interruptible
:
true
script
:
-
composer install
@@ -13,29 +12,21 @@ install:
-
vendor/
expire_in
:
1 day
install.php-next
:
extends
:
install
allow_failure
:
true
script
:
# install dibi/dibi from master, as support is in no stable version yet
-
composer require dibi/dibi:dev-master --ignore-platform-reqs
image
:
grifart/php-next
phpstan
:
stage
:
test
install.php81
:
extends
:
.install
image
:
grifart/php8.1-with-all-modules-and-various-tools
interruptible
:
true
dependencies
:
-
install
script
:
-
composer run phpstan
tests
:
install.php82
:
extends
:
.install
image
:
grifart/php8.2-with-all-modules-and-various-tools
install.php83
:
extends
:
.install
image
:
grifart/php8.3-with-all-modules-and-various-tools
.tests
:
stage
:
test
image
:
grifart/php8.1-with-all-modules-and-various-tools
interruptible
:
true
dependencies
:
-
install
services
:
-
postgres:14-alpine
variables
:
@@ -48,9 +39,29 @@ tests:
script
:
-
composer run test
tests.php-next
:
extends
:
tests
image
:
grifart/php-next
allow_failure
:
true
tests.php81
:
extends
:
.tests
image
:
grifart/php8.1-with-all-modules-and-various-tools
dependencies
:
-
install.php81
tests.php82
:
extends
:
.tests
image
:
grifart/php8.2-with-all-modules-and-various-tools
dependencies
:
-
install.php82
tests.php83
:
extends
:
.tests
image
:
grifart/php8.3-with-all-modules-and-various-tools
dependencies
:
-
install.php83
phpstan
:
stage
:
test
image
:
grifart/php8.3-with-all-modules-and-various-tools
interruptible
:
true
dependencies
:
-
install.php-next
-
install.php83
script
:
-
composer run phpstan
Loading