potiuk commented on PR #69231:
URL: https://github.com/apache/airflow/pull/69231#issuecomment-5269606582

   Nothing in your diff is causing those failures — they're expired CI 
artifacts, not a code problem.
   
   The last run against this PR is from 2 August, and every one of the failing 
jobs (`Providers wheel tests`, `Providers sdist tests`, the `Compat` matrix, 
`Generate constraints`) dies at the same early step:
   
   ```
   No stash found for keys ci-image-save-v3-linux_amd64-3.10-69231_merge or 
ci-image-save-v3-linux_amd64-3.10-main.
   ```
   
   That's the cached CI image the jobs need in order to start. GitHub expires 
those artifacts after a couple of weeks, so on a PR that has sat for a while 
the jobs fail before they touch your changes at all. The Flit build errors you 
saw in the provider-distribution jobs are downstream of the same missing image.
   
   Re-running only the failed jobs won't fix it — the artifact is gone for 
good. What does fix it is a rebase and a push, which starts a fresh run that 
builds the image first:
   
   ```bash
   git fetch upstream main
   git rebase upstream/main
   git push --force-with-lease origin <your-branch>
   ```
   
   The approval stands; once the fresh run is green a maintainer will pick it 
up for merge.
   
   ---
   Drafted-by: Claude Code (Opus 5); reviewed by @potiuk before posting
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to