Skip to content

Commit

Permalink
CI: Don't skip meson workflow on manual dispatch
Browse files Browse the repository at this point in the history
`Signed-off-by: Mobin Aydinfar <[email protected]>`
  • Loading branch information
mobin-2008 authored Sep 15, 2024
1 parent ff159b7 commit 1c0f0af
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/meson_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:

Debian-bookworm_build:

if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'meson') }}
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' ||
contains(github.event.pull_request.labels.*.name, 'meson') }}
runs-on: ubuntu-latest
container:
image: debian:bookworm
Expand Down Expand Up @@ -83,7 +84,8 @@ jobs:

MacOS-latest_build:

if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'meson') }}
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' ||
contains(github.event.pull_request.labels.*.name, 'meson') }}
runs-on: macos-latest
strategy:
fail-fast: false # Upload src/igr-tests/*/output/* files in igr-tests
Expand Down Expand Up @@ -112,7 +114,8 @@ jobs:

Alpine-latest_build:

if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'meson') }}
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' ||
contains(github.event.pull_request.labels.*.name, 'meson') }}
runs-on: ubuntu-latest
strategy:
fail-fast: false # Upload src/igr-tests/*/output/* files in igr-tests
Expand Down

0 comments on commit 1c0f0af

Please sign in to comment.