Skip to content

Commit

Permalink
Bump validation workflows to use large machine instances to avoid run…
Browse files Browse the repository at this point in the history
…ning out of heap memory when processing large feeds.

Closes #1304.
  • Loading branch information
bdferris-v2 committed Jan 30, 2023
1 parent 352f94d commit ef13140
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/acceptance_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,10 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
get-reports:
needs: [ fetch-urls, pack-master, pack-snapshot ]
runs-on: ubuntu-latest
runs-on:
# We use machines with more memory to run validation, as large feeds
# can consume too much heap for default machine instances (see #1304).
group: ubuntu-latest-4-cores
strategy:
matrix: ${{ fromJson(needs.fetch-urls.outputs.matrix) }}
steps:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/end_to_end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
run-on-data:
needs: [ fetch-urls, pack-snapshot ]
runs-on: ubuntu-latest
runs-on:
# We use machines with more memory to run validation, as large feeds
# can consume too much heap for default machine instances (see #1304).
group: ubuntu-latest-4-cores
strategy:
matrix: ${{ fromJson(needs.fetch-urls.outputs.matrix) }}
steps:
Expand Down

0 comments on commit ef13140

Please sign in to comment.