Skip to content

Commit

Permalink
Merge pull request #98 from ByteInternet/php83
Browse files Browse the repository at this point in the history
  • Loading branch information
tdgroot authored Jan 25, 2024
2 parents 70e90a5 + bece1fa commit f9b143e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
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/ssh-agent@v0.5.4
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

0 comments on commit f9b143e

Please sign in to comment.