Skip to content

Commit f9b143e

Browse files
authored
Merge pull request #98 from ByteInternet/php83
2 parents 70e90a5 + bece1fa commit f9b143e

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
- "8.0"
1313
- "8.1"
1414
- "8.2"
15+
- "8.3"
1516
node_version:
1617
- 12
1718
- 14
@@ -21,7 +22,7 @@ jobs:
2122
env:
2223
PHP_VERSION: ${{ matrix.php_version }}
2324
NODE_VERSION: ${{ matrix.node_version }}
24-
LATEST_PHP_VERSION: 8.1
25+
LATEST_PHP_VERSION: 8.3
2526
LATEST_NODE_VERSION: 18
2627
steps:
2728
- name: Checkout hypernode-deploy

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
integration_test:
77
strategy:
88
matrix:
9-
php_version: [7.4, 8.1] # 8.2 is disabled for now, since Magento 2 does not support this yet.
9+
php_version: [8.1, 8.2] # 8.3 is disabled for now, since Magento 2 does not support this yet.
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.1' }}
22+
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.2' }}
2323
uses: webfactory/[email protected]
2424
with:
2525
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
2626
- name: Run brancher testsuite
27-
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.1' }}
27+
if: ${{ matrix.testsuite == 'brancher' && matrix.php_version == '8.2' }}
2828
run: ./runtests.sh brancher
2929
shell: bash
3030
env:
@@ -34,7 +34,7 @@ jobs:
3434
code_quality:
3535
strategy:
3636
matrix:
37-
php_version: [7.4, 8.1, 8.2]
37+
php_version: [7.4, 8.1, 8.2, 8.3]
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout hypernode-deploy

ci/test/run-general.sh

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

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

0 commit comments

Comments
 (0)