Skip to content

Commit

Permalink
Add debug action
Browse files Browse the repository at this point in the history
  • Loading branch information
dfsnow committed Jan 29, 2025
1 parent 51dc172 commit 29d1ae7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/calculate-times.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
- name: Increase swapfile to max size
uses: ./.github/actions/prep-disk-and-swap

- name: Run routing jobs
- name: Start docker
shell: bash
working-directory: 'data'
run: |
Expand All @@ -178,6 +178,15 @@ jobs:
osrm/osrm-backend osrm-routed --algorithm ch \
--max-table-size 100000000 /data/${{ matrix.state }}.osrm
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true

- name: Run routing jobs
shell: bash
working-directory: 'data'
run: |
geographies='${{ steps.create-geo-jobs.outputs.param }}'
geographies_array=($(echo "$geographies" | jq -r '.[]'))
for geo in "${geographies_array[@]}"; do
Expand Down

0 comments on commit 29d1ae7

Please sign in to comment.