More tuning
continuous-integration/drone/pr Build was killed Details

This commit is contained in:
kolaente 2021-08-11 23:44:09 +02:00
parent 707f286d98
commit 9c615b967e
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 35 additions and 4 deletions

View File

@ -13,6 +13,19 @@ volumes:
- name: tmp-mysql-integration
temp:
medium: memory
- name: tmp-mysql-migration
temp:
medium: memory
- name: tmp-postgres-unit
temp:
medium: memory
- name: tmp-postgres-integration
temp:
medium: memory
- name: tmp-postgres-migration
temp:
medium: memory
services:
- name: test-mysql-unit
@ -36,21 +49,39 @@ services:
environment:
MYSQL_ROOT_PASSWORD: vikunjatest
MYSQL_DATABASE: vikunjatest
volumes:
- name: tmp-mysql-migration
path: /var/lib/mysql
- name: test-postgres-unit
image: postgres:12
image: postgres:13
environment:
POSTGRES_PASSWORD: vikunjatest
POSTGRES_DB: vikunjatest
volumes:
- name: tmp-postgres-unit
path: /var/lib/postgresql/data
commands:
- -c fsync=off -x full_page_writes=off # turns of wal
- name: test-postgres-integration
image: postgres:12
image: postgres:13
environment:
POSTGRES_PASSWORD: vikunjatest
POSTGRES_DB: vikunjatest
volumes:
- name: tmp-postgres-integration
path: /var/lib/postgresql/data
commands:
- -c fsync=off -x full_page_writes=off # turns of wal
- name: test-postgres-migration
image: postgres:12
image: postgres:13
environment:
POSTGRES_PASSWORD: vikunjatest
POSTGRES_DB: vikunjatest
volumes:
- name: tmp-postgres-migration
path: /var/lib/postgresql/data
commands:
- -c fsync=off -x full_page_writes=off # turns of wal
trigger:
branch:
@ -805,6 +836,6 @@ steps:
- failure
---
kind: signature
hmac: 4fce25f72143886e0ef6782e3e860ee546ca2e56caf61eff2a34b3f60c469654
hmac: 55f7d520199b724bee073d8111a044f946cafd290cf41aa6a9e8e018fcc93586
...