Skip to content

Commit

Permalink
CI: try to not skip CI on the fork
Browse files Browse the repository at this point in the history
  • Loading branch information
ev-br committed Dec 5, 2023
1 parent 22926af commit 680ed9b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/linux_meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# the usual skipping should not be enforced
if: >
needs.get_commit_message.outputs.message == 1
&& (github.repository == 'scipy/scipy' || github.repository == '')
&& (github.repository == 'ev-br/scipy' || github.repository == '')
runs-on: ubuntu-22.04
strategy:
matrix:
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
needs: get_commit_message
if: >
needs.get_commit_message.outputs.message == 1
&& (github.repository == 'scipy/scipy' || github.repository == '')
&& (github.repository == 'ev-br/scipy' || github.repository == '')
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
needs: get_commit_message
if: >
needs.get_commit_message.outputs.message == 1
&& (github.repository == 'scipy/scipy' || github.repository == '')
&& (github.repository == 'ev-br/scipy' || github.repository == '')
runs-on: ubuntu-22.04 # provides python3.10-dbg
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
needs: get_commit_message
if: >
needs.get_commit_message.outputs.message == 1
&& (github.repository == 'scipy/scipy' || github.repository == '')
&& (github.repository == 'ev-br/scipy' || github.repository == '')
runs-on: ubuntu-20.04 # 22.04 doesn't support gcc-8
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
needs: get_commit_message
if: >
needs.get_commit_message.outputs.message == 1
&& (github.repository == 'scipy/scipy' || github.repository == '')
&& (github.repository == 'ev-br/scipy' || github.repository == '')
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
needs: get_commit_message
if: >
needs.get_commit_message.outputs.message == 1
&& (github.repository == 'scipy/scipy' || github.repository == '')
&& (github.repository == 'ev-br/scipy' || github.repository == '')
runs-on: ubuntu-latest
# I tried running directly in a container:, using the image: and options:
# entries. Unfortunately at this time options: does not seem to listen to
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# the usual skipping should not be enforced
if: >
needs.get_commit_message.outputs.message == 1
&& (github.repository == 'scipy/scipy' || github.repository == '')
&& (github.repository == 'ev-br/scipy' || github.repository == '')
runs-on: macos-latest
strategy:
matrix:
Expand Down

0 comments on commit 680ed9b

Please sign in to comment.