-
Notifications
You must be signed in to change notification settings - Fork 52
60 lines (55 loc) · 1.5 KB
/
postgres.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
name: Build with Postgres
on:
pull_request:
workflow_dispatch:
concurrency:
group: "${{ github.workflow }}/${{ github.ref }}"
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
postgres: [12, 15, 16]
suite: [test, integration]
env:
DB_DATABASE: autoscaler
DB_USER: postgres
DB_PASSWORD: postgres
runs-on: ubuntu-latest
container:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
continue-on-error: true
name: Build suite=${{ matrix.suite }}, postgres=${{ matrix.postgres }}
services:
postgres:
image: postgres:${{ matrix.postgres }}
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: autoscaler
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Trust my checkout
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
- uses: actions/checkout@v4
- name: make build
env:
POSTGRES_HOST: postgres
POSTGRES_PORT: 5432
run: |
make generate-openapi-generated-clients-and-servers
make build
- name: make ${{ matrix.suite }}
env:
POSTGRES_HOST: postgres
POSTGRES_PORT: 5432
POSTGRES_DB: autoscaler
run: |
make ${{ matrix.suite }} DB_HOST="${POSTGRES_HOST}"