mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
move database test jobs to separate workflow file
This commit is contained in:
parent
5c7a0df7ff
commit
069215adf5
66
.github/workflows/test.yml
vendored
66
.github/workflows/test.yml
vendored
@ -29,32 +29,6 @@ jobs:
|
|||||||
name: docker-backend-test
|
name: docker-backend-test
|
||||||
path: /tmp/backend.tar
|
path: /tmp/backend.tar
|
||||||
|
|
||||||
##############################################################################
|
|
||||||
# JOB: DOCKER BUILD TEST DATABASE UP #########################################
|
|
||||||
##############################################################################
|
|
||||||
build_test_database_up:
|
|
||||||
name: Docker Build Test - Database up
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
#needs: [nothing]
|
|
||||||
steps:
|
|
||||||
##########################################################################
|
|
||||||
# CHECKOUT CODE ##########################################################
|
|
||||||
##########################################################################
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
##########################################################################
|
|
||||||
# DATABASE UP ############################################################
|
|
||||||
##########################################################################
|
|
||||||
- name: Database | Build `test_up` image
|
|
||||||
run: |
|
|
||||||
docker build --target test_up -t "gradido/database:test_up" database/
|
|
||||||
docker save "gradido/database:test_up" > /tmp/database_up.tar
|
|
||||||
- name: Upload Artifact
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: docker-database-test_up
|
|
||||||
path: /tmp/database_up.tar
|
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# JOB: LINT BACKEND ##########################################################
|
# JOB: LINT BACKEND ##########################################################
|
||||||
##############################################################################
|
##############################################################################
|
||||||
@ -91,23 +65,7 @@ jobs:
|
|||||||
- name: Backend | Locales
|
- name: Backend | Locales
|
||||||
run: cd backend && yarn && yarn locales
|
run: cd backend && yarn && yarn locales
|
||||||
|
|
||||||
##############################################################################
|
|
||||||
# JOB: LINT DATABASE UP ######################################################
|
|
||||||
##############################################################################
|
|
||||||
lint_database_up:
|
|
||||||
name: Lint - Database Up
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
##########################################################################
|
|
||||||
# CHECKOUT CODE ##########################################################
|
|
||||||
##########################################################################
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
##########################################################################
|
|
||||||
# LINT DATABASE ##########################################################
|
|
||||||
##########################################################################
|
|
||||||
- name: Database | Lint
|
|
||||||
run: cd database && yarn && yarn run lint
|
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# JOB: UNIT TEST BACKEND ####################################################
|
# JOB: UNIT TEST BACKEND ####################################################
|
||||||
@ -145,25 +103,3 @@ jobs:
|
|||||||
- name: backend Unit tests | test
|
- name: backend Unit tests | test
|
||||||
run: cd database && yarn && yarn build && cd ../backend && yarn && yarn test
|
run: cd database && yarn && yarn build && cd ../backend && yarn && yarn test
|
||||||
|
|
||||||
##########################################################################
|
|
||||||
# DATABASE MIGRATION TEST UP + RESET #####################################
|
|
||||||
##########################################################################
|
|
||||||
database_migration_test:
|
|
||||||
name: Database Migration Test - Up + Reset
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
#needs: [nothing]
|
|
||||||
steps:
|
|
||||||
##########################################################################
|
|
||||||
# CHECKOUT CODE ##########################################################
|
|
||||||
##########################################################################
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
##########################################################################
|
|
||||||
# DOCKER COMPOSE DATABASE UP + RESET #####################################
|
|
||||||
##########################################################################
|
|
||||||
- name: database | docker-compose
|
|
||||||
run: docker-compose -f docker-compose.yml up --detach mariadb
|
|
||||||
- name: database | up
|
|
||||||
run: docker-compose -f docker-compose.yml run -T database yarn up
|
|
||||||
- name: database | reset
|
|
||||||
run: docker-compose -f docker-compose.yml run -T database yarn reset
|
|
||||||
|
|||||||
65
.github/workflows/test_database.yml
vendored
Normal file
65
.github/workflows/test_database.yml
vendored
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
name: Gradido Database Test CI
|
||||||
|
|
||||||
|
on: push
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
files-changed:
|
||||||
|
name: Detect File Changes - Database
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
database: ${{ steps.changes.outputs.database }}
|
||||||
|
docker-compose: ${{ steps.changes.outputs.docker-compose }}
|
||||||
|
mariadb: ${{ steps.changes.outputs.mariadb }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3.3.0
|
||||||
|
|
||||||
|
- name: Check for frontend file changes
|
||||||
|
uses: dorny/paths-filter@v2.11.1
|
||||||
|
id: changes
|
||||||
|
with:
|
||||||
|
token: ${{ github.token }}
|
||||||
|
filters: .github/file-filters.yml
|
||||||
|
list-files: shell
|
||||||
|
|
||||||
|
build:
|
||||||
|
if: needs.files-changed.outputs.database == 'true'
|
||||||
|
name: Docker Build Test - Database up
|
||||||
|
needs: files-changed
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Database | Build 'test_up' image
|
||||||
|
run: |
|
||||||
|
docker build --target test_up -t "gradido/database:test_up" database/
|
||||||
|
|
||||||
|
database_migration_test:
|
||||||
|
if: needs.files-changed.outputs.database == 'true' || needs.files-changed.outputs.docker-compose == 'true' || needs.files-changed.outputs.mariadb == 'true'
|
||||||
|
name: Database Migration Test - Up + Reset
|
||||||
|
needs: files-changed
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Database | docker-compose
|
||||||
|
run: docker-compose -f docker-compose.yml up --detach mariadb
|
||||||
|
|
||||||
|
- name: Database | up
|
||||||
|
run: docker-compose -f docker-compose.yml run -T database yarn up
|
||||||
|
|
||||||
|
- name: Database | reset
|
||||||
|
run: docker-compose -f docker-compose.yml run -T database yarn reset
|
||||||
|
|
||||||
|
lint:
|
||||||
|
if: needs.files-changed.outputs.database == 'true'
|
||||||
|
name: Lint - Database Up
|
||||||
|
needs: files-changed
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Database | Lint
|
||||||
|
run: cd database && yarn && yarn run lint
|
||||||
Loading…
x
Reference in New Issue
Block a user