-
Notifications
You must be signed in to change notification settings - Fork 52
52 lines (45 loc) · 1.28 KB
/
mysql.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
---
name: Build with Mysql
on:
pull_request:
workflow_dispatch:
concurrency:
group: "${{ github.workflow }}/${{ github.ref }}"
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
mysql: [8]
suite: [test, integration]
env:
DB_DATABASE: autoscaler
DB_USER: root
DB_PASSWORD: root
runs-on: ubuntu-latest
container:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
continue-on-error: true
name: Build suite=${{ matrix.suite }}, mysql=${{ matrix.mysql }}
services:
mysql:
image: mysql:${{ matrix.mysql }}
env:
MYSQL_ALLOW_EMPTY_PASSWORD: true
MYSQL_DATABASE: autoscaler
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: Trust my checkout
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
- uses: actions/checkout@v4
- name: make build
run: |
make generate-openapi-generated-clients-and-servers
make build db_type=mysql
- name: make ${{ matrix.suite }}
env:
DB_HOST: mysql
run: |
make ${{ matrix.suite }} db_type=mysql DB_HOST="${DB_HOST}"