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

Fix workflows issue #1316

Merged
merged 4 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/nightly_ondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
runner: pvc_e2e

Linux-Nightly-Ondemand-UT-Tests:
if: github.event_name == 'schedule' || ${{ inputs.ut_suite }}
if: ${{ github.event_name == 'schedule' || inputs.ut != '' }}
name: linux-nightly-ondemand
needs: Linux-Nightly-Ondemand-Build
uses: ./.github/workflows/_linux_ut.yml
Expand All @@ -97,7 +97,7 @@ jobs:
runs-on: pvc_e2e
name: linux-nightly-ondemand / e2e_test
# Don't run on forked repos
if: github.repository_owner == 'intel'
if: ${{ github.repository_owner == 'intel' }}
needs: Linux-Nightly-Ondemand-Build
timeout-minutes: 3600
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly_ondemand_rolling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
Linux-Nightly-Ondemand-Build-Rolling:
# Don't run on forked repos
secrets: inherit
if: github.repository_owner == 'intel'
if: ${{ github.repository_owner == 'intel' }}
name: linux-nightly-ondemand-rolling
permissions:
issues: write
Expand All @@ -83,7 +83,7 @@ jobs:
runner: pvc_rolling

Linux-Nightly-Ondemand-UT-Tests-Rolling:
if: github.event_name == 'schedule' || ${{ inputs.ut_suite }}
if: ${{ github.event_name == 'schedule' || inputs.ut != '' }}
name: linux-nightly-ondemand-rolling
needs: Linux-Nightly-Ondemand-Build-Rolling
uses: ./.github/workflows/_linux_ut.yml
Expand All @@ -99,7 +99,7 @@ jobs:
Linux-Nightly-Ondemand-E2E-Tests-Rolling:
runs-on: pvc_rolling
# Don't run on forked repos
if: github.repository_owner == 'intel'
if: ${{ github.repository_owner == 'intel' }}
name: linux-nightly-ondemand-rolling / e2e_test
needs: Linux-Nightly-Ondemand-Build-Rolling
timeout-minutes: 3600
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly_ondemand_whl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ concurrency:

jobs:
Linux-Nightly-Ondemand-UT-WHL-Tests:
if: ${{ (github.event_name == 'schedule' || ${{ inputs.ut }}) }}
if: ${{ github.event_name == 'schedule' || inputs.ut != '' }}
uses: ./.github/workflows/_linux_ut.yml
with:
ut: ${{ github.event_name == 'schedule' && 'op_regression,op_regression_dev1,op_extended,op_ut' || inputs.ut }}
Expand Down