-
-
Notifications
You must be signed in to change notification settings - Fork 20
Initial PHP 8.1 support #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
ffb6de0
docs: fix `dependencies` configuration entry
boesing 6fcae3d
feature: bump swoole extension to `4.7.0`
boesing 7ebfe5b
qa: normalize `mods-available` synchronization
boesing 63ce82e
qa: add dedicated strategy setups
boesing 9376275
feature: introduce setup strategy for PHP 8.1
boesing f208eb2
feature: rework `extensions` handling
boesing 8fdce0a
qa: use glob rather than `ls` to iterate over files in `conf.d`
boesing 08ab536
bugfix: `$mod` contains the full qualified path to that file and thus…
boesing 77810a3
bugfix: handle latest changes made by `shivammathur/php-builder`
boesing 385771b
bugfix: add missing shebang
boesing d291df3
qa: apply latest shellcheck hints
boesing 4e213f5
qa: use quoted variables
boesing 0ffb222
qa: remove `shellcheck disable`
boesing d4e9b58
qa: disable `SC2005` and add quotes for `basename`
boesing e202af1
qa: fix typo
boesing f1841f0
bugfix: do not disable any modules
boesing d8193a1
qa: avoid using `echo` and `grep` to determine if an extension is alr…
boesing File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
NODE_ENV=production npm install -g markdownlint-cli2 | ||
ln -s /usr/local/bin/markdownlint-cli2 /usr/local/bin/markdownlint |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
php5.6-bz2 | ||
php5.6-cli | ||
php5.6-curl | ||
php5.6-dev | ||
php5.6-fileinfo | ||
php5.6-intl | ||
php5.6-json | ||
php5.6-mbstring | ||
php5.6-phar | ||
php5.6-readline | ||
php5.6-sockets | ||
php5.6-xml | ||
php5.6-xsl | ||
php5.6-zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
ACCEPT_EULA=Y xargs -a dependencies apt install -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
php7.0-cli | ||
php7.0-bz2 | ||
php7.0-curl | ||
php7.0-dev | ||
php7.0-fileinfo | ||
php7.0-intl | ||
php7.0-json | ||
php7.0-mbstring | ||
php7.0-phar | ||
php7.0-readline | ||
php7.0-sockets | ||
php7.0-xml | ||
php7.0-xsl | ||
php7.0-zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
ACCEPT_EULA=Y xargs -a dependencies apt install -y |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this break-down, as it means that we likely won't need to rebuild most layers unless a change actually occurs to an individual script. That said, I see one potential issue being that forcing a rebuild to pick up a new bugfix release may be harder.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, this is indeed an issue.
I will think about it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy
Maybe we won't have any issues due to this fact?