-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Test Firebird in 32-bit Linux CI #17045
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
Conversation
Co-authored-by: =?UTF-8?q?=E6=AD=A6=E7=94=B0=20=E6=86=B2=E5=A4=AA=E9=83=8E?= <takeda@youmind.jp> Co-authored-by: Christoph M. Becker <cmbecker69@gmx.de>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
Duplicate post? Please ignore... |
@@ -6,6 +6,8 @@ sockets | |||
--XLEAK-- | |||
A bug in firebird causes a memory leak when calling `isc_attach_database()`. | |||
See https://github.com/FirebirdSQL/firebird/issues/7849 | |||
--SKIPIF-- | |||
<?php if (PHP_INT_SIZE != 8) die("skip: 64-bit only"); ?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
<?php if (PHP_INT_SIZE != 8) die("skip: 64-bit only"); ?> | |
<?php if (PHP_INT_SIZE != 8) die("skip 64-bit only"); ?> |
Otherwise run-tests.php will report reason: : 64-bit only
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thx
Co-authored-by: Christoph M. Becker <cmbecker69@gmx.de>
This does not work in nightly, apparently. https://github.com/php/php-src/actions/runs/12208755353/job/34062517782 The changes from .github/workflows/push.yml should be ported to nightly.yml. |
See #17080 |
No description provided.