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
8 changes: 3 additions & 5 deletions .github/workflows/ci-pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,16 +173,14 @@ jobs:
- name: Test NAPI file in linux_glibc containers
if: matrix.image == 'linux_glibc'
run: |
./tests/load-test.sh node:16-bullseye ${{matrix.cpu.platform}}
./tests/load-test.sh node:18-bullseye ${{matrix.cpu.platform}}
./tests/load-test.sh node:19-bullseye ${{matrix.cpu.platform}}
./tests/load-test.sh node:22-bullseye ${{matrix.cpu.platform}}
./tests/load-test.sh node:16-bookworm ${{matrix.cpu.platform}}
./tests/load-test.sh node:18-bookworm ${{matrix.cpu.platform}}
./tests/load-test.sh node:22-bookworm ${{matrix.cpu.platform}}

- name: Test NAPI file in linux_musl containers
if: matrix.image == 'linux_musl'
run: |
./tests/load-test.sh node:18-alpine ${{matrix.cpu.platform}}
./tests/load-test.sh node:19-alpine ${{matrix.cpu.platform}}
./tests/load-test.sh node:22-alpine ${{matrix.cpu.platform}}

windows-napi:
Expand Down
2 changes: 1 addition & 1 deletion pkg/linux/Dockerfile_linux_glibc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

ARG NODE_VERSION

FROM node:${NODE_VERSION}-bullseye
FROM node:${NODE_VERSION}-bookworm

RUN apt-get update -y && \
apt-get install -y \
Expand Down
Loading