Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,19 @@ jobs:
- "8.2"
- "8.3"
- "8.4"
- "8.5"
node_version:
- 16
- 18
- 20
- 22
- 24
runs-on: ubuntu-latest
env:
PHP_VERSION: ${{ matrix.php_version }}
NODE_VERSION: ${{ matrix.node_version }}
LATEST_PHP_VERSION: 8.4
LATEST_NODE_VERSION: 22
LATEST_PHP_VERSION: 8.5
LATEST_NODE_VERSION: 24
steps:
- name: Checkout hypernode-deploy
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 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: [8.1, 8.2, 8.3, 8.4]
php_version: [8.1, 8.2, 8.3, 8.4, 8.5]
testsuite: [general, brancher]
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -34,7 +34,7 @@ jobs:
code_quality:
strategy:
matrix:
php_version: [8.1, 8.2, 8.3, 8.4]
php_version: [8.1, 8.2, 8.3, 8.4, 8.5]
runs-on: ubuntu-latest
steps:
- name: Checkout hypernode-deploy
Expand Down
4 changes: 2 additions & 2 deletions ci/build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ RUN apt-get clean \
&& echo \
"Package: * \
Pin origin debian.hypernode.com \
Pin-Priority: 1000" > /etc/apt/preferences.d/hypernode
Pin-Priority: 1000" > /etc/apt/preferences.d/hypernode \
&& apt update

RUN curl -fsSL https://deb.nodesource.com/setup_$NODE_VERSION.x | bash -

Expand Down Expand Up @@ -71,7 +72,6 @@ RUN apt-get install -y --no-install-recommends \
php${PHP_VERSION}-mbstring \
php${PHP_VERSION}-mysql \
php${PHP_VERSION}-odbc \
php${PHP_VERSION}-opcache \
php${PHP_VERSION}-pgsql \
php${PHP_VERSION}-pspell \
php${PHP_VERSION}-readline \
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 @@ -4,7 +4,7 @@ set -e
set -x

export PHP_VERSION_SHORT=$(echo "${PHP_VERSION:-8.2}" | sed 's/\.//')
if [[ "${PHP_VERSION:-8.2}" == "8.4" ]]; then
if [[ "${PHP_VERSION:-8.2}" == "8.4" || "${PHP_VERSION:-8.2}" == "8.5" ]]; then
export IMAGE_OS="bookworm"
else
export IMAGE_OS="buster"
Expand Down
Loading