fix(deps): update code.cloudfoundry.org/loggregator-agent-release/src digest to 5c53942 #12055
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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@sha256:edd58762b4e2447676f1ccd30ba9d03f358548b2e047f277ff693d19f6fefb90 | |
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@11bd71901bbe5b1630ceea73d27597364c9af683 # 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}" |