Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
php-http-httplug
Manage
Activity
Members
Labels
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
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
Debian PHP Team
PEAR
php-http-httplug
Commits
771758b9
Commit
771758b9
authored
3 years ago
by
David Buchmann
Browse files
Options
Downloads
Patches
Plain Diff
cleanup build matrix
parent
ba0eb541
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/checks.yml
+2
-1
2 additions, 1 deletion
.github/workflows/checks.yml
.github/workflows/ci.yml
+5
-3
5 additions, 3 deletions
.github/workflows/ci.yml
with
7 additions
and
4 deletions
.github/workflows/checks.yml
+
2
−
1
View file @
771758b9
...
...
@@ -6,6 +6,7 @@ on:
-
master
pull_request
:
jobs
:
roave-bc-check
:
name
:
Roave BC Check
runs-on
:
ubuntu-latest
...
...
@@ -15,4 +16,4 @@ on:
uses
:
actions/checkout@v2
-
name
:
Roave BC Check
uses
:
"
docker://nyholm/roave-bc-check-ga"
uses
:
"
docker://nyholm/roave-bc-check-ga"
This diff is collapsed.
Click to expand it.
.github/workflows/ci.yml
+
5
−
3
View file @
771758b9
...
...
@@ -2,6 +2,8 @@ name: CI
on
:
push
:
branches
:
-
master
pull_request
:
jobs
:
...
...
@@ -25,13 +27,13 @@ jobs:
-
name
:
Install PHP 7 dependencies
run
:
composer update --prefer-dist --no-interaction --no-progress
if
:
"
matrix.php
!=
'8.0'
"
if
:
"
startsWith(
matrix.php
,
'7.')
"
-
name
:
Install PHP 8 dependencies
run
:
|
composer require "phpdocumentor/reflection-docblock:^5.2@dev" --no-interaction --no-update
composer update --prefer-dist --prefer-stable --no-interaction --no-progress --ignore-platform-req=php
if
:
"
matrix.php
==
'8.
0
'"
if
:
"
startsWith(
matrix.php
,
'8.'
)
"
-
name
:
Execute tests
run
:
composer test
...
...
@@ -41,7 +43,7 @@ jobs:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
php
:
[
'
7.1'
,
'
7.
2
'
,
'
7.3'
,
'
7.4
'
]
php
:
[
'
7.1'
,
'
7.
4
'
,
'
8.0
'
]
steps
:
-
name
:
Checkout code
...
...
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