aqb6: import UltimateDebtor into part_name2 #28
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: Docker-ci | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
docker-build-ci: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
# mariadb service for testing | |
services: | |
db: | |
image: mariadb | |
ports: | |
- 3306:3306 | |
env: | |
MYSQL_ROOT_PASSWORD: geheim | |
MYSQL_DATABASE: dbTest | |
MYSQL_USER: mysqluser | |
MYSQL_PASSWORD: mysqlpassword | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Log into registry ghcr.io | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract Docker metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ghcr.io/${{ github.repository }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
load: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Install Mariadb-Client on Runner for tests | |
run: | | |
# install MariaDB client | |
sudo apt-get update | |
sudo apt-get install mariadb-client | |
- name: Test | |
env: | |
HBCI_PINFILE: ${{ secrets.HBCI_PINFILE }} | |
run: | | |
[ "$RUNNER_DEBUG" == 1 ] && | |
DEBUGSH="set -x" && | |
TESTPARM="--debug" && | |
set -x | |
cat >.hbci-pinfile <<<"$HBCI_PINFILE" | |
MYSQL_HOST=db | |
MYSQL_LOCAL_HOST=127.0.0.1 | |
MYSQL_DATABASE=dbTest | |
MYSQL_USER=mysqluser | |
MYSQL_PASSWORD=mysqlpassword | |
MYSQL_ROOT_PASSWORD=geheim | |
FINIMG="${{ steps.meta.outputs.tags}}" | |
FINNET="${{ job.services.db.network}}" | |
. ./testlocal.sh test $TESTPARM | |
- name: Cleanup Test | |
if: always() | |
run: | | |
rm .hbci-pinfile | |
- name: Push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |