Compare commits

..

4 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] 2b720f3d88 Remove step-level timeouts to allow artifact downloads to complete
Co-authored-by: ggman12 <17393221+ggman12@users.noreply.github.com>
2026-02-16 19:38:27 +00:00
copilot-swe-agent[bot] e65da2cd95 Fix YAML property ordering for timeout-minutes
Co-authored-by: ggman12 <17393221+ggman12@users.noreply.github.com>
2026-02-16 17:50:18 +00:00
copilot-swe-agent[bot] 7ea815732c Add timeout and retry logic to adsb-reduce artifact download step
Co-authored-by: ggman12 <17393221+ggman12@users.noreply.github.com>
2026-02-16 17:49:41 +00:00
copilot-swe-agent[bot] 7fd5df8777 Initial plan 2026-02-16 17:44:39 +00:00
+11
View File
@@ -240,6 +240,7 @@ jobs:
adsb-reduce:
needs: [generate-matrix, adsb-map]
runs-on: ubuntu-24.04-arm
timeout-minutes: 120
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -255,6 +256,16 @@ jobs:
pip install -r requirements.txt
- name: Download all chunk artifacts
id: download
continue-on-error: true
uses: actions/download-artifact@v4
with:
pattern: adsb-map-*
path: data/output/adsb_chunks/
merge-multiple: true
- name: Retry artifact download on failure
if: steps.download.outcome == 'failure'
uses: actions/download-artifact@v4
with:
pattern: adsb-map-*