Skip to content
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
1 change: 1 addition & 0 deletions .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ jobs:
echo ""
echo "Looking for pcp module:"
find /usr/local -name "pcp.py" -o -name "pcp" -type d 2>/dev/null | grep -i python || echo "No pcp module found in /usr/local"
cat python3-pcp.list || echo "Doesn't look like the Python3 installation bit triggered"

echo ""
echo "Check if pcp module is installed:"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ jobs:
SELECTED_PLATFORM="${{ github.event.inputs.platform }}"

if [ -z "$SELECTED_PLATFORM" ] || [ "$SELECTED_PLATFORM" = "all" ]; then
# Run all platforms
echo "matrix={\"include\":$ALL_PLATFORMS}" >> $GITHUB_OUTPUT
# Run all platforms - compact JSON to single line
COMPACTED=$(echo "$ALL_PLATFORMS" | jq -c .)
echo "matrix={\"include\":$COMPACTED}" >> $GITHUB_OUTPUT
else
# Filter to selected platform
FILTERED=$(echo "$ALL_PLATFORMS" | jq -c --arg p "$SELECTED_PLATFORM" '[.[] | select(.platform == $p)]')
Expand Down
Loading