Skip to content

Commit 68563c9

Browse files
author
Jonathan Visser
committed
Update testflow to support PHP 8.3, and use newer Magento version for tests
1 parent 59da327 commit 68563c9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
integration_test:
77
strategy:
88
matrix:
9-
php_version: [8.1, 8.2] # 8.3 is disabled for now, since Magento 2 does not support this yet.
9+
php_version: [8.1, 8.2, 8.3]
1010
testsuite: [general, brancher]
1111
runs-on: ubuntu-latest
1212
steps:
@@ -19,12 +19,12 @@ jobs:
1919
env:
2020
PHP_VERSION: ${{ matrix.php_version }}
2121
- name: Start SSH agent for brancher testsuite
22-
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.2' }}
22+
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.3' }}
2323
uses: webfactory/ssh-agent@v0.5.4
2424
with:
2525
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
2626
- name: Run brancher testsuite
27-
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.2' }}
27+
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.3' }}
2828
run: ./runtests.sh brancher
2929
shell: bash
3030
env:

ci/test/run-general.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ end_task
5959

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

0 commit comments

Comments
 (0)