Annotations
1 error
Process completed with exit code 127.
EDIT: Nevermind, apparently had to set EXECUTABLE_FILES to 0.
Annotations
1 error
Process completed with exit code 127.
Yes - I know, its just the other minor adjustments to the other files that takes the time.
Ummm. I looked at some of your repos. You don't have any unit tests. You should not be running Unit tests when there is nothing to test! It wastes precious resources from Github for one, because of spooling up over 20 VMs which do nothing at all.
MattF wrote: ↑Thu Dec 24, 2020 8:19 pmCode: Select all
[![Build Status](https://github.com/GITHUB-USERNAME/REPO-NAME/workflows/Tests/badge.svg)](https://github.com/phpbb-extensions/GITHUB-USERNAME/REPO-NAME)
phpbb-extensions/
should be removed from the URL.By default, GitHub Actions have the option fail-fast enabled, which is the one that cancels all steps from the same job if any step fails.
Code: Select all
jobs:
mysql-tests:
...
strategy:
fail-fast: false
very thanks.AbaddonOrmuz wrote: ↑Sat Jan 30, 2021 9:39 pm By default, GitHub Actions have the option fail-fast enabled, which is the one that cancels all steps from the same job if any step fails.
For me it's actually a good thing, since you are not wasting time for the pass/fail status or build minutes (for private repositories) when some tests do not pass.
You can disable it, like:
Code: Select all
jobs: mysql-tests: ... strategy: fail-fast: false
Code: Select all
mysqli_sql_exception: Table 'phpbb_tests.phpbb_config' doesn't exist in /home/runner/work/Rin-Editor_for_phpBB/Rin-Editor_for_phpBB/phpBB3/phpBB/phpbb/db/driver/mysqli.php:193