History log of /php-src/.github/scripts/windows/test_task.bat (Results 1 – 18 of 18)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# bb3a3d02 04-Oct-2024 Christoph M. Becker

[skip ci] Don't build bless_tests.patch (GH-16224)

The bless_tests.patch had been introduced via PR #7204, but is no
longer available due to PR #11566. Since apparently the patch is not

[skip ci] Don't build bless_tests.patch (GH-16224)

The bless_tests.patch had been introduced via PR #7204, but is no
longer available due to PR #11566. Since apparently the patch is not
that helpful, we remove the code which generates it.

show more ...


# 3e9f2fa0 03-Oct-2024 Christoph M. Becker

Avoid dl() in run-tests.php (GH-16126)

Prior to running the tests, the test runner checks for all generally
available extensions; it does this by scanning the `extension_dir` for
fil

Avoid dl() in run-tests.php (GH-16126)

Prior to running the tests, the test runner checks for all generally
available extensions; it does this by scanning the `extension_dir` for
files matching the typical extension pattern, but verifies that the
file is actually a PHP extension by calling `dl()`. However, `dl()`
has known issues[1]. On Windows CI we always get an ugly "zend_mm_heap
corrupted" message, and we even can't `dl()` ext/mysql when OPcache is
enabled[2]. So we better avoid the double-check with `dl()`, which is
unlikely to be necessary anyway.

[1] <https://github.com/php/php-src/issues/9196>
[2] <https://github.com/php/php-src/issues/8508>

show more ...


# 58043535 21-Sep-2024 Christoph M. Becker

Support bug64159.phpt on Windows CI (GH-15895)

This test queries `extOutput` for the first line of output of the
command which was executed when snmpd started (`HexTest` in snmpd.conf).

Support bug64159.phpt on Windows CI (GH-15895)

This test queries `extOutput` for the first line of output of the
command which was executed when snmpd started (`HexTest` in snmpd.conf).
Since there is no `/bin/sh` on Windows, no command would be run, and as
such we received an empty string. We fix that by dynamically adjusting
snmpd.conf to run a JScript which has the same output as bigtest.

We also make the test diff more helpful in case of failures, where so
far we only would have known that the output had a different message
digest.

show more ...


# b26e6107 15-Sep-2024 Christoph M. Becker

Run snmp tests in Windows CI, again

That was broken when CI was moved to GH, since `APPVEYOR_BUILD_FOLDER`
is no longer set; instead we use `GITHUB_WORKSPACE` which has the same
mean

Run snmp tests in Windows CI, again

That was broken when CI was moved to GH, since `APPVEYOR_BUILD_FOLDER`
is no longer set; instead we use `GITHUB_WORKSPACE` which has the same
meaning.

Closes GH-15896.

show more ...


# c4f1c5cd 16-Jul-2024 Saki Takamachi <34942839+SakiTakamachi@users.noreply.github.com>

Updated firebird version in windows ci (#14912)


# f598b587 13-Jun-2024 Ilija Tovilo

Remove GitHub actions junit artifacts

Nobody looks at those, and nightly regularly fails due to uploading them.

Closes GH-14555


# f62f6a6d 09-Feb-2024 Saki Takamachi <34942839+SakiTakamachi@users.noreply.github.com>

Follow-up to remove IMAP ext (#13248)

Fixed and optimized tests that depend on imap in standard ext tests.

Also, the location of the setup script for hmailserver has changed.


# 3e237ecf 08-Feb-2024 Peter Kokot

Remove remainings of recent oci extensions removal (#13352)

Following a4d64b2605f18d9d015fa3e69b7da87847e27662


# 2ca142ec 14-Nov-2023 Daniil Gentili

Improve jit tests

Closes GH-12425


# 29fed1cf 13-Oct-2023 Ilija Tovilo

Remove redundant CI JIT flags

These flags are already set from run-tests.php.


# 2aa2d91a 12-Oct-2023 Ilija Tovilo

Reduce jit_max_root_traces in tests

This value would be so high, occupying 88MB of shm on my machine and effectively
disabling the JIT in some cases.

Co-authored-by: Daniil Gent

Reduce jit_max_root_traces in tests

This value would be so high, occupying 88MB of shm on my machine and effectively
disabling the JIT in some cases.

Co-authored-by: Daniil Gentili <daniil@daniil.it>

show more ...


# ae52f195 07-Oct-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix Windows CI

The path to mysql.exe changed. Fortunately, chocolately puts the folder
containing the exe in the PATH environment variable, so we don't even
need to provide an absolu

Fix Windows CI

The path to mysql.exe changed. Fortunately, chocolately puts the folder
containing the exe in the PATH environment variable, so we don't even
need to provide an absolute path.

show more ...


# 098d9ca7 18-Sep-2023 Daniil Gentili

Trigger JIT tracing&compilation more often

Closes GH-12250


# b94ef611 22-Sep-2023 Lewis Cowles

ci: more verbose output (#12264)


# f47dc259 30-Jun-2023 Ilija Tovilo

Retire AppVeyor

Closes GH-11566


# f42e5628 09-Mar-2023 Michael Voříšek

Windows CI log verbosity, CI bat file guard

Closes GH-10817


# 916b132e 12-Nov-2022 Michael Voříšek

Add Windows GitHub actions build

Closes GH-10664


Revision tags: php-8.2.0RC1, php-8.1.10, php-8.0.23, php-8.0.23RC1, php-8.1.10RC1, php-8.2.0beta3, php-8.2.0beta2, php-8.1.9, php-8.0.22, php-8.1.9RC1, php-8.2.0beta1, php-8.0.22RC1, php-8.0.21, php-8.1.8, php-8.2.0alpha3, php-8.1.8RC1, php-8.2.0alpha2, php-8.0.21RC1, php-8.0.20, php-8.1.7, php-8.2.0alpha1, php-7.4.30, php-8.1.7RC1, php-8.0.20RC1, php-8.1.6, php-8.0.19, php-8.1.6RC1, php-8.0.19RC1
# b43e4943 24-Apr-2022 Michael Voříšek

Prepare for Windows CI with Github Actions