History log of /PHP-8.1/.github/workflows/nightly.yml (Results 1 – 25 of 48)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 6c8a0d01 31-Oct-2024 Ilija Tovilo

[skip ci] Properly disable -Werror for libmysqlclient + mysqli


# 8a067cc2 31-Oct-2024 Ilija Tovilo

[skip ci] Revert "Remove -Werror for libmysql test on 8.1 only"

This reverts commit 769947648ef946b2dbe49029ea78ed13377dd1d4.

Nightly uses the file from master, so this change made

[skip ci] Revert "Remove -Werror for libmysql test on 8.1 only"

This reverts commit 769947648ef946b2dbe49029ea78ed13377dd1d4.

Nightly uses the file from master, so this change made no sense.

show more ...


# 08bbd7d1 29-Oct-2024 Ilija Tovilo

[skip ci] Move nightly to workflow_call

This PR removes most of the logic of nightly_matrix.php by converting
nightly.yml to a workflow_call, and invoking it multiple times for each bran

[skip ci] Move nightly to workflow_call

This PR removes most of the logic of nightly_matrix.php by converting
nightly.yml to a workflow_call, and invoking it multiple times for each branch
in a new root.yml workflow. The naming of the files is intentionally kept to
make the diff readable. They may still be renamed afterward.

Closes GH-16642

show more ...


# 76994764 30-Oct-2024 Ilija Tovilo

Remove -Werror for libmysql test on 8.1 only


# 27e88605 29-Oct-2024 Ilija Tovilo

Backport nightly.yml and nightly_matrix.php to PHP-8.1

These files are usually only used on master, as the cron trigger runs on master.
However, workflow_dispatch does use the file from

Backport nightly.yml and nightly_matrix.php to PHP-8.1

These files are usually only used on master, as the cron trigger runs on master.
However, workflow_dispatch does use the file from the triggered branch.
Furthermore, we're looking into migrating to a workflow_call trigger, which will
also run on the target branch. Backport these files now to make those changes
easier.

show more ...


# 25c09939 28-Oct-2024 Ilija Tovilo

Backport CI fixes to security branches

Closes GH-16469

Working towards GH-16286

commit e0db221143b808d97bc3a44e9f0968c6308794b4
Author: Ilija Tovilo <ilija.tovilo@me.co

Backport CI fixes to security branches

Closes GH-16469

Working towards GH-16286

commit e0db221143b808d97bc3a44e9f0968c6308794b4
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date: Fri Oct 25 22:48:20 2024 +0200

Move CFLAGS into ./configure command for consistency

commit 8ad67768250d181cd7fef30e0c866625bbd8ac94
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date: Fri Oct 25 22:47:03 2024 +0200

Also upgrade nightly to macOS 13

commit 58a88ccb9f652adbd13e8c2b5186fb31213f0789
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date: Wed Oct 23 19:07:59 2024 +0200

Fix call to dc[n]gettext in tests with 0 $category

This causes a segfault on PHP-8.1

commit 611af05c50685acbb22f0f9d18dd37234c3546f1
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date: Fri Dec 8 13:36:52 2023 +0100

[skip ci] Skip intermittently failing curl test on macOS

The test fails with "CURL ERROR: 56". I will create an issue for it shortly.

commit ec745178bbded22830046d2ba3458120b778c21f
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date: Wed Oct 23 19:05:32 2024 +0200

Backport parts of 9999a0c for gettext

See 9999a0cb757344974889a6f548727de6f2c3c10d

commit 5ce703496f4c9f0e95cc26af60f6abe62efde1d4
Author: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
Date: Sun Jul 28 14:34:26 2024 +0200

Fix CI failure on macOS after Curl update

commit 714a3e707113510fb82bd507e9fd6f92954ca753
Author: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
Date: Sat Jul 27 16:09:50 2024 +0200

Fix CI failure after Curl update (#15124)

commit 4f2eb921b9b3f3f68ff84605afb77dbd00829a44
Author: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
Date: Thu May 23 22:20:37 2024 +0200

Fix GH-14307: Test curl_basic_024 fails with curl 8.8.0

Curl changed the behaviour, from the changelog:
- lib: make protocol handlers store scheme name lowercase curl/curl@c294f9c

From the docs: "The returned scheme might be upper or lowercase. Do
comparisons case insensitively."

Closes GH-14312.

commit 251195b41bea35f356bdd2bfc3623da38dafa3e8
Author: Ayesh Karunaratne <ayesh@aye.sh>
Date: Thu Feb 1 02:03:55 2024 +0700

ext/curl: Fix failing tests due to string changes in libcurl 8.6.0

Upstream libcurl 8.6.0 contains a change[^1] that caused a test failure.
This fixes it by updating the test's `EXPECTF` to use a regex to account for both string patterns.

[^1]: https://github.com/curl/curl/commit/45cf4755e71f#diff-a8a54563608f8155973318f4ddb61d7328dab512b8ff2b5cc48cc76979d4204cL1683

Closes GH-13293.

commit fc5d83f2b147d10d3f20aa96d9425b69d15b1b39
Author: Christoph M. Becker <cmbecker69@gmx.de>
Date: Wed Oct 16 22:46:20 2024 +0200

Prepare for necessary move to macOS 13

GH will remove macOS 12 runner images as of December 3rd, so we prepare
for that.

Besides the obvious need to change the runner, we also suppress a
couple of warnings, because otherwise the build would fail due to
`-Werror`.

show more ...


# 0e8205bd 31-Oct-2023 Ilija Tovilo

Use attribute for ignoring Laravel test

Apparently `@group` stopped working.


# b0bac336 30-Oct-2023 Ilija Tovilo

[skip ci] Fix laravel community build

FilesystemTest::testSharedGet() uses too much memory and crashes GA. It was
already ignored by adding the `@skip` attribute, but the code changed an

[skip ci] Fix laravel community build

FilesystemTest::testSharedGet() uses too much memory and crashes GA. It was
already ignored by adding the `@skip` attribute, but the code changed and the
replacement stopped working.

Closes GH-12570

show more ...


# c3d2f519 30-Oct-2023 Ilija Tovilo

[skip ci] Update mysql 5.7 patch


# 734afa0b 13-Oct-2023 Ilija Tovilo

Fix JIT on nightly

The JIT was accidentally disabled in nightly on lower branches because
jit_buffer_size woudln't be passed from nightly.yml on master anymore.


# 36a87e6d 04-Oct-2023 Ilija Tovilo

Minimal backport of 098d9ca


# 55ed7690 14-Sep-2023 Ilija Tovilo

Upgrade to macOS 12 in CI

We get some mysterious failures on macOS on GA with no evident error. This is a
blind attempt to solve it. There are many similar reports but there's no clear

Upgrade to macOS 12 in CI

We get some mysterious failures on macOS on GA with no evident error. This is a
blind attempt to solve it. There are many similar reports but there's no clear
resolution.

https://github.com/actions/runner-images/issues/7509#issuecomment-1538294874

Closes GH-12210

show more ...


# 45e60e58 13-Sep-2023 Tim Düsterhus

Update GitHub Action workflows to `actions/checkout@v4`

Keep this up to date in all non-security-only branches, because the node.js
runtime for older versions might get deprecated in the

Update GitHub Action workflows to `actions/checkout@v4`

Keep this up to date in all non-security-only branches, because the node.js
runtime for older versions might get deprecated in the future and fixing this
for all branches at once is easier.

show more ...


# ba07a0b8 23-Aug-2023 Ilija Tovilo

Move installation of oracle instant client in GHA

Closes GH-12033


# 902d39d5 14-Aug-2023 Ilija Tovilo

Use per-branch matrix for windows nightly

I forgot this in the last PR.


# 90f514cf 09-Aug-2023 Ilija Tovilo

Add Windows build to nightly

Also stop running 32-bit in push, it's really not necessary.


# 43e267ae 01-May-2023 Ilija Tovilo

[skip ci] Upgrade libmysql version


# 2eeff96d 11-Apr-2023 Ilija Tovilo

[skip ci] Fix Slack notification

ravsamhq/notify-slack-action doesn't work on MacOS, so we use curl directly.


# 3a21a874 03-Apr-2023 Ilija Tovilo

[skip ci] Notify Slack on nightly failure


# 12290b79 08-Mar-2023 Ilija Tovilo

Update libmysql 5.7 version


# cdc0a8b0 13-Nov-2022 Ilija Tovilo

Add wordpress to community build

Closes GH-9942


# da546641 11-Nov-2022 Ilija Tovilo

[skip ci] Skip function JIT in nightly for ASAN

This avoids the 6h timeout.


# 75970077 30-Oct-2022 Ilija Tovilo

Migrate i386 to GitHub actions

Closes GH-9856


# 8cd1b837 16-Oct-2022 Tim Düsterhus

Update to actions/checkout@v3 (PHP-8.1)

see 629fcb6a0f72ebb7c8e239533b24c8ccdd591c83


# 629fcb6a 16-Oct-2022 Tim Düsterhus

Update to actions/checkout@v3 (#9759)

The relevant difference is that the v3 uses a newer node.js version. GitHub
currently warns when using v2, as the node.js version used is deprecated

Update to actions/checkout@v3 (#9759)

The relevant difference is that the v3 uses a newer node.js version. GitHub
currently warns when using v2, as the node.js version used is deprecated:

> Node.js 12 actions are deprecated. For more information see:
> https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
> Please update the following actions to use Node.js 16: actions/checkout,
> actions/checkout

show more ...


12