mirror of
https://github.com/PlaneQuery/OpenAirframes.git
synced 2026-07-30 21:37:25 +02:00
change days to 5
This commit is contained in:
@@ -22,9 +22,9 @@ jobs:
|
|||||||
ranges = []
|
ranges = []
|
||||||
current = start
|
current = start
|
||||||
|
|
||||||
# Process in 1-day chunks (daily)
|
# Process in 4-day chunks
|
||||||
while current < end:
|
while current < end:
|
||||||
chunk_end = current + timedelta(days=1)
|
chunk_end = current + timedelta(days=4)
|
||||||
# Don't go past the end date
|
# Don't go past the end date
|
||||||
if chunk_end > end:
|
if chunk_end > end:
|
||||||
chunk_end = end
|
chunk_end = end
|
||||||
@@ -60,7 +60,7 @@ jobs:
|
|||||||
needs: [generate-matrix, clone-faa-repo]
|
needs: [generate-matrix, clone-faa-repo]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
max-parallel: 256 # GitHub Actions maximum
|
max-parallel: 5 # Process 5 chunks at a time
|
||||||
matrix:
|
matrix:
|
||||||
range: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
|
range: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
Reference in New Issue
Block a user