1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-03-23 18:15:08 +00:00

runner size

This commit is contained in:
Kyle Mendell
2026-03-08 15:27:10 -05:00
parent aff19e797c
commit 57a3ae3fea

View File

@@ -21,7 +21,7 @@ permissions:
jobs: jobs:
test: test:
if: github.event.pull_request.head.ref != 'i18n_crowdin' if: github.event.pull_request.head.ref != 'i18n_crowdin'
runs-on: depot-ubuntu-24.04-16 runs-on: depot-ubuntu-24.04-32
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@@ -67,12 +67,12 @@ jobs:
id: postgres-cache id: postgres-cache
with: with:
path: /tmp/postgres-image.tar path: /tmp/postgres-image.tar
key: postgres-17-${{ runner.os }} key: postgres-18-${{ runner.os }}
- name: Pull and save PostgreSQL image - name: Pull and save PostgreSQL image
if: matrix.db == 'postgres' && steps.postgres-cache.outputs.cache-hit != 'true' if: matrix.db == 'postgres' && steps.postgres-cache.outputs.cache-hit != 'true'
run: | run: |
docker pull postgres:17 docker pull postgres:18
docker save postgres:17 > /tmp/postgres-image.tar docker save postgres:18 > /tmp/postgres-image.tar
- name: Load PostgreSQL image - name: Load PostgreSQL image
if: matrix.db == 'postgres' && steps.postgres-cache.outputs.cache-hit == 'true' if: matrix.db == 'postgres' && steps.postgres-cache.outputs.cache-hit == 'true'
run: docker load < /tmp/postgres-image.tar run: docker load < /tmp/postgres-image.tar