Skip to content
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

ci: Build PHP 8.3 image #98

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
- "8.0"
- "8.1"
- "8.2"
- "8.3"
node_version:
- 12
- 14
Expand All @@ -21,7 +22,7 @@ jobs:
env:
PHP_VERSION: ${{ matrix.php_version }}
NODE_VERSION: ${{ matrix.node_version }}
LATEST_PHP_VERSION: 8.1
LATEST_PHP_VERSION: 8.3
LATEST_NODE_VERSION: 18
steps:
- name: Checkout hypernode-deploy
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
integration_test:
strategy:
matrix:
php_version: [7.4, 8.1] # 8.2 is disabled for now, since Magento 2 does not support this yet.
php_version: [8.1, 8.2] # 8.3 is disabled for now, since Magento 2 does not support this yet.
testsuite: [general, brancher]
runs-on: ubuntu-latest
steps:
Expand All @@ -19,12 +19,12 @@ jobs:
env:
PHP_VERSION: ${{ matrix.php_version }}
- name: Start SSH agent for brancher testsuite
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.1' }}
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.2' }}
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run brancher testsuite
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.1' }}
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.2' }}
run: ./runtests.sh brancher
shell: bash
env:
Expand All @@ -34,7 +34,7 @@ jobs:
code_quality:
strategy:
matrix:
php_version: [7.4, 8.1, 8.2]
php_version: [7.4, 8.1, 8.2, 8.3]
runs-on: ubuntu-latest
steps:
- name: Checkout hypernode-deploy
Expand Down
2 changes: 1 addition & 1 deletion ci/test/run-general.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ end_task

begin_task "Setting Magento 2"
# Create working initial Magento install on the Hypernode container
$HN composer create-project --repository=https://mirror.mage-os.org/ magento/project-community-edition:2.4.5-p2 /data/web/magento2
$HN composer create-project --repository=https://mirror.mage-os.org/ magento/project-community-edition:2.4.6-p3 /data/web/magento2
echo "Waiting for MySQL to be available on the Hypernode container"
$HN bash -c "until mysql -e 'select 1' ; do sleep 1; done"
install_magento
Expand Down
Loading