diff options
author | Andrew McNulty <amcn102@gmail.com> | 2024-02-14 13:42:35 +0000 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-02-14 22:58:40 -0500 |
commit | c80ece2410064b396baedd2da0bb8484e102a5dd (patch) | |
tree | 9f6c7b58e85184464f1e09d41c0645a0c385486e | |
parent | c0bf597715f7077a0897fd1ebecbe829452be972 (diff) | |
download | meson-c80ece2410064b396baedd2da0bb8484e102a5dd.zip meson-c80ece2410064b396baedd2da0bb8484e102a5dd.tar.gz meson-c80ece2410064b396baedd2da0bb8484e102a5dd.tar.bz2 |
workflows: Trigger on all test harness changes
The following workflows have been updated so that they are
triggered when the any of the test harnesses are updated:
macos,
os-comp,
msys2
Previously only changes to `run_unittests.py` caused these
workflows to be executed.
-rw-r--r-- | .github/workflows/macos.yml | 4 | ||||
-rw-r--r-- | .github/workflows/msys2.yml | 4 | ||||
-rw-r--r-- | .github/workflows/os_comp.yml | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index bdc5f20..236b979 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -15,14 +15,14 @@ on: - "test cases/**" - "unittests/**" - ".github/workflows/macos.yml" - - "run_unittests.py" + - "run*tests.py" pull_request: paths: - "mesonbuild/**" - "test cases/**" - "unittests/**" - ".github/workflows/macos.yml" - - "run_unittests.py" + - "run*tests.py" permissions: contents: read diff --git a/.github/workflows/msys2.yml b/.github/workflows/msys2.yml index 0a949e3..fe28a67 100644 --- a/.github/workflows/msys2.yml +++ b/.github/workflows/msys2.yml @@ -15,14 +15,14 @@ on: - "test cases/**" - "unittests/**" - ".github/workflows/msys2.yml" - - "run_unittests.py" + - "run*tests.py" pull_request: paths: - "mesonbuild/**" - "test cases/**" - "unittests/**" - ".github/workflows/msys2.yml" - - "run_unittests.py" + - "run*tests.py" permissions: contents: read diff --git a/.github/workflows/os_comp.yml b/.github/workflows/os_comp.yml index e9f5b7a..1d77984 100644 --- a/.github/workflows/os_comp.yml +++ b/.github/workflows/os_comp.yml @@ -16,7 +16,7 @@ on: - "unittests/**" - ".github/workflows/images.yml" - ".github/workflows/os_comp.yml" - - "run_unittests.py" + - "run*tests.py" pull_request: paths: - "mesonbuild/**" @@ -24,7 +24,7 @@ on: - "unittests/**" - ".github/workflows/images.yml" - ".github/workflows/os_comp.yml" - - "run_unittests.py" + - "run*tests.py" permissions: contents: read |