mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-23 19:25:07 +00:00
runner size
This commit is contained in:
8
.github/workflows/e2e-tests.yml
vendored
8
.github/workflows/e2e-tests.yml
vendored
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user