Skip to content

Commit

Permalink
chore: debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBredehoft committed May 2, 2024
1 parent f1606bc commit cf9df6b
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -701,23 +701,24 @@ jobs:
# if 'make pytest' fails
- name: PyTest Source Code (regular, weekly)
id: pytest
if: |
(
(
steps.changed-files-in-pr.outcome == 'success'
&& (
steps.changed-files-in-pr.outputs.src_any_changed == 'true'
|| steps.changed-files-in-pr.outputs.tests_utils_any_changed == 'true'
|| steps.changed-files-in-pr.outputs.dependencies_any_changed == 'true'
|| steps.changed-files-in-pr.outputs.conftest_any_changed == 'true'
|| steps.changed-files-in-pr.outputs.makefile_any_changed == 'true'
)
)
|| fromJSON(env.IS_WORKFLOW_DISPATCH)
|| fromJSON(env.IS_WEEKLY)
)
&& steps.conformance.outcome == 'success'
&& !cancelled()
# if: |
# (
# (
# steps.changed-files-in-pr.outcome == 'success'
# && (
# steps.changed-files-in-pr.outputs.src_any_changed == 'true'
# || steps.changed-files-in-pr.outputs.tests_utils_any_changed == 'true'
# || steps.changed-files-in-pr.outputs.dependencies_any_changed == 'true'
# || steps.changed-files-in-pr.outputs.conftest_any_changed == 'true'
# || steps.changed-files-in-pr.outputs.makefile_any_changed == 'true'
# )
# )
# || fromJSON(env.IS_WORKFLOW_DISPATCH)
# || fromJSON(env.IS_WEEKLY)
# )
# && steps.conformance.outcome == 'success'
# && !cancelled()
if: false
shell: bash +e {0}
run: |
if [[ "${env.IS_WEEKLY}" == "true" ]]; then
Expand Down

0 comments on commit cf9df6b

Please sign in to comment.