File tree Expand file tree Collapse file tree 1 file changed +0
-21
lines changed
Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -114,28 +114,13 @@ jobs:
114114 echo "agents=$agents_json" >> $GITHUB_OUTPUT
115115 echo "has_agents=true" >> $GITHUB_OUTPUT
116116
117- # Debug outputs
118- echo "DEBUG: Setting has_agents=true"
119- echo "DEBUG: agents_json=$agents_json"
120- echo "DEBUG: GITHUB_OUTPUT contents:"
121- cat $GITHUB_OUTPUT
122-
123117 echo "" >> $GITHUB_STEP_SUMMARY
124118 for agent in "${agents_to_build[@]}"; do
125119 echo "- \`$agent\`" >> $GITHUB_STEP_SUMMARY
126120 done
127121 echo "" >> $GITHUB_STEP_SUMMARY
128122 fi
129123
130- test-outputs :
131- needs : [find-agents]
132- runs-on : ubuntu-latest
133- steps :
134- - name : Test outputs
135- run : |
136- echo "has_agents: '${{ needs.find-agents.outputs.has_agents }}'"
137- echo "agents: '${{ needs.find-agents.outputs.agents }}'"
138-
139124 build-agents :
140125 needs : [find-agents]
141126 if : ${{ needs.find-agents.outputs.has_agents == 'true' }}
@@ -148,12 +133,6 @@ jobs:
148133
149134 name : build-${{ matrix.agent_path }}
150135 steps :
151- - name : Debug inputs from find-agents
152- run : |
153- echo "DEBUG: Received has_agents = '${{ needs.find-agents.outputs.has_agents }}'"
154- echo "DEBUG: Received agents = '${{ needs.find-agents.outputs.agents }}'"
155- echo "DEBUG: Current matrix agent = '${{ matrix.agent_path }}'"
156-
157136 - name : Checkout repository
158137 uses : actions/checkout@v4
159138
You can’t perform that action at this time.
0 commit comments