Skip to content

Commit b0a323d

Browse files
authored
Merge pull request #85 from ByteInternet/add_php82
2 parents 39daf89 + 9163f85 commit b0a323d

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
- "7.4"
1212
- "8.0"
1313
- "8.1"
14+
- "8.2"
1415
node_version:
1516
- 12
1617
- 14
@@ -36,7 +37,7 @@ jobs:
3637
QUAY_USER: ${{ secrets.QUAY_USER }}
3738
QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }}
3839
- name: Build image
39-
run: |
40+
run: |
4041
docker build -t "$DOCKER_TAG" -f "./ci/build/Dockerfile" \
4142
--build-arg PHP_VERSION=${{ matrix.php_version }} \
4243
--build-arg NODE_VERSION=${{ matrix.node_version }} \

.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: [7.4, 8.1]
9+
php_version: [7.4, 8.1] # 8.2 is disabled for now, since Magento 2 does not support this yet.
1010
testsuite: [general, brancher]
1111
runs-on: ubuntu-latest
1212
steps:
@@ -34,13 +34,13 @@ jobs:
3434
code_quality:
3535
strategy:
3636
matrix:
37-
php_version: [7.4, 8.1]
37+
php_version: [7.4, 8.1, 8.2]
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout hypernode-deploy
4141
uses: actions/checkout@v3
4242
- name: Install PHP
43-
uses: shivammathur/setup-php@2.21.1
43+
uses: shivammathur/setup-php@v2
4444
with:
4545
php-version: ${{ matrix.php_version }}
4646
tools: composer:v2

ci/test/run-brancher.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ DP="docker run --rm -v /tmp/m2build:/web -e HYPERNODE_API_TOKEN -e SSH_PRIVATE_K
1111
docker build \
1212
-f ci/build/Dockerfile \
1313
--build-arg NODE_VERSION=16 \
14-
--build-arg PHP_VERSION="${PHP_VERSION:-8.1}" \
14+
--build-arg PHP_VERSION="${PHP_VERSION:-8.2}" \
1515
-t hndeploy \
1616
.
1717

ci/test/run-general.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44
set -x
55

6-
export PHP_VERSION_SHORT=$(echo "${PHP_VERSION:-8.1}" | sed 's/\.//')
6+
export PHP_VERSION_SHORT=$(echo "${PHP_VERSION:-8.2}" | sed 's/\.//')
77

88
# Handy aliases
99
HN="docker-compose exec -T hypernode"

0 commit comments

Comments
 (0)