Draft
Conversation
- Add needs: [build_binaries] to all test jobs that use the action - Replace remote action references with local (uses: ./) - Add checkout step where missing - Add artifact download and distribute directory setup before action usage - This ensures binaries built by build_binaries job are available when tests run Co-authored-by: awalsh128 <2087466+awalsh128@users.noreply.github.com>
Owner
|
Workflow is failing with /home/runner/work/_temp/bd351cec-2a01-466e-801e-6ed4bdc518b7.sh: line 1: ./scripts/distribute.sh: No such file or directory |
Copilot stopped work on behalf of
awalsh128 due to an error
January 6, 2026 02:17
Owner
|
Use the dev-v2.0 branch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix Test Workflows
Root Cause Analysis
The test workflows in action-tests.yml were failing with "Binary not found" errors because:
uses: awalsh128/cache-apt-pkgs-action@dev-v2.0which checks out the action into a separate directory${{github.action_path}}/distribute/${{runner.arch}}/cache_apt_pkgsbuild_binariesjob and uploaded as artifactsSolution Implemented
Modified action-tests.yml to fix all test jobs:
uses: ./) instead of remoteneeds: [build_binaries]to all test jobs to ensure binaries are built firstTechnical Details
The fix adds these steps before action usage in each test job:
cache-apt-pkgs-*./distribute/${{runner.arch}}/Testing
Ready for workflow execution test on dev-v2.0 branch.
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.