Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not check fastify in case of nodej-18 and RHEL8, RHEL9 #435

Merged
merged 1 commit into from
Jun 13, 2024
Merged
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
9 changes: 9 additions & 0 deletions test/test-lib-nodejs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,15 @@ function test_client_cloudevents() {
test_running_client_js cloudevents
}
function test_client_fastify() {
if [[ "${VERSION}" == *"minimal"* ]]; then
VERSION=$(echo "${VERSION}" | cut -d "-" -f 1)
fi
if [[ "$VERSION" == "18" ]]; then
if [ "$OS" == "rhel8" ] || [ "$OS" == "rhel9" ]; then
echo "Fastify is not supported in $VERSION and rhel8 and rhel9"
return
fi
fi
echo "Running fastify client test"
test_running_client_js fastify
}
Expand Down