File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1111 - " 7.4"
1212 - " 8.0"
1313 - " 8.1"
14+ - " 8.2"
1415 node_version :
1516 - 12
1617 - 14
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 }} \
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ DP="docker run --rm -v /tmp/m2build:/web -e HYPERNODE_API_TOKEN -e SSH_PRIVATE_K
1111docker 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
Original file line number Diff line number Diff line change 33set -e
44set -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
99HN=" docker-compose exec -T hypernode"
You can’t perform that action at this time.
0 commit comments