Skip to content

Commit

Permalink
Update debug
Browse files Browse the repository at this point in the history
Signed-off-by: Brian J. Murrell <brian.murrell@intel.com>
  • Loading branch information
brianjmurrell committed Sep 11, 2024
1 parent 6951e5d commit 5016ca2
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/rpm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,21 +134,23 @@ jobs:
steps:
- name: Show Create Symlinks Conditionals
run: |
echo "(${{ needs.Import-commit-pragmas.outputs.run-gha }} || "
echo "(${{ inputs.BRANCH != '' }} || "
echo " ${{ needs.Import-commit-pragmas.outputs.run-gha }} || "
echo " ${{ inputs.RUN_GHA }} || "
echo " '${{ github.event_name }}' == 'workflow_dispatch') == "
echo "${{ (needs.Import-commit-pragmas.outputs.run-gha == 'true' ||
echo " '${{ github.event_name }}' == 'workflow_dispatch') == ${{
(inputs.BRANCH != '' ||
needs.Import-commit-pragmas.outputs.run-gha ||
inputs.RUN_GHA == 'true' ||
github.event_name == 'workflow_dispatch') }}"
echo "contains: ${{ contains(needs.Import-commit-pragmas.outputs.pr-repos, inputs.NAME) }}"
echo "contains hard-coded: ${{ contains(needs.Import-commit-pragmas.outputs.pr-repos, 'argobots@') }}"
echo "pr-repos: ${{ needs.Import-commit-pragmas.outputs.pr-repos }}"
echo "Overall result: ${{ (inputs.BRANCH != '' ||
needs.Import-commit-pragmas.outputs.run-gha == 'true' ||
needs.Import-commit-pragmas.outputs.run-gha ||
inputs.RUN_GHA ||
github.event_name == 'workflow_dispatch') &&
needs.Import-commit-pragmas.outputs.rpm-test-version == '' &&
false }}"
(!contains(needs.Import-commit-pragmas.outputs.pr-repos, inputs.NAME)) }}"
echo "inputs.NAME: ${{ inputs.NAME }}"
Create-symlinks:
Expand Down Expand Up @@ -193,8 +195,8 @@ jobs:
inputs.RUN_GHA ||
github.event_name == 'workflow_dispatch') &&
needs.Import-commit-pragmas.outputs.rpm-test-version == '' &&
(!contains(needs.Import-commit-pragmas.outputs.pr-repos, 'inputs.NAME@')) }}"
echo "contains: ${{ contains(needs.Import-commit-pragmas.outputs.pr-repos, 'inputs.NAME@') }}"
(!contains(needs.Import-commit-pragmas.outputs.pr-repos, inputs.NAME)) }}"
echo "contains: ${{ contains(needs.Import-commit-pragmas.outputs.pr-repos, inputs.NAME) }}"
echo "pr-repos: ${{ needs.Import-commit-pragmas.outputs.pr-repos }}"
# do we actually need a checkout here?
# - name: Checkout code
Expand Down

0 comments on commit 5016ca2

Please sign in to comment.