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

Testsuite skip irrelevant testruns #6314

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
12 changes: 11 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,17 @@ jobs:
- '.github/workflows/build_clang_tidy.yaml'
test_suite:
- *src_cmake_dependencies
- 'data/**' # TODO(aDiscoverer) list what needs to be checked
# ignore some subdirectories
- 'data/!(campaigns|maps|music|sound|tribes|world)/**'
# but track parts of them
- 'data/tribes/**.lua' # track lua files

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tothxaMirrored from Codeberg
On Mon Jan 15 13:53:50 CET 2024, Tóth András (tothxa) wrote:


This is not right. We must test new images too.

- 'data/world/**.lua'
- added|deleted: 'data/tribes/**' # do not care about image modifications
- added|deleted: 'data/world/**' # dito
- 'data/maps/Crater.wmf/**' # for test/template/test_alldefaults.wgt
- 'data/maps/Lesser_Ring.wmf/**' # for test/template/*.wgt
- 'data/maps/Wisent_Valley.wmf/**' # for test/template/test_fortified_vi*-artifacts.wgt
- 'data/*' # do not ignore files directly inside
- 'regression_test.py'
- 'test/**'
- '.github/scripts/install_deps.sh' # calls install-dependencies.sh
Expand Down