We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65b0e3b commit c490719Copy full SHA for c490719
1 file changed
.github/workflows/reusable.yml
@@ -616,7 +616,11 @@ jobs:
616
# Use Bash which is more flexible than CMD and we can reuse the logic
617
. ci/enforce.sh
618
echo "B2_FULL_ARGS=${B2_ARGS[@]}" >> "$GITHUB_ENV"
619
- echo "B2_TOOLSET=$B2_TOOLSET" >> "$GITHUB_ENV"
+ echo "SELF=$SELF" >> "$GITHUB_ENV"
620
+ if [[-z "$B2_TARGETS" ]]; then
621
+ B2_TARGETS=libs/$SELF/test
622
+ fi
623
+ echo "B2_TARGETS=$B2_TARGETS" >> "$GITHUB_ENV"
624
env:
625
B2_TOOLSET: ${{matrix.toolset}}
626
B2_TARGET_OS: ${{matrix.target-os}}
@@ -626,6 +630,7 @@ jobs:
630
B2_LINK: ${{inputs.b2_link}}
627
631
B2_VARIANT: ${{inputs.b2_variant}}
628
632
SELF: ${{inputs.library_folder}}
633
+ B2_TARGETS: ${{inputs.b2_targets}}
629
634
635
- name: Run tests
636
if: '!matrix.coverage'
0 commit comments