mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
262 lines
12 KiB
YAML
262 lines
12 KiB
YAML
name: gradido test CI
|
|
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
##############################################################################
|
|
# JOB: DOCKER BUILD TEST FRONTEND ############################################
|
|
##############################################################################
|
|
build_test_frontend:
|
|
name: Docker Build Test - Frontend
|
|
runs-on: ubuntu-latest
|
|
#needs: [nothing]
|
|
steps:
|
|
##########################################################################
|
|
# CHECKOUT CODE ##########################################################
|
|
##########################################################################
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
##########################################################################
|
|
# FRONTEND ###############################################################
|
|
##########################################################################
|
|
- name: Frontend | Build `test` image
|
|
run: |
|
|
docker build --target test -t "gradido/frontend:test" frontend/
|
|
docker save "gradido/frontend:test" > /tmp/frontend.tar
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: docker-frontend-test
|
|
path: /tmp/frontend.tar
|
|
|
|
##############################################################################
|
|
# JOB: DOCKER BUILD TEST LOGIN SERVER ########################################
|
|
##############################################################################
|
|
build_test_login_server:
|
|
name: Docker Build Test - Login Server
|
|
runs-on: ubuntu-latest
|
|
#needs: [nothing]
|
|
steps:
|
|
##########################################################################
|
|
# CHECKOUT CODE ##########################################################
|
|
##########################################################################
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
##########################################################################
|
|
# BUILD LOGIN SERVER DOCKER IMAGE ########################################
|
|
##########################################################################
|
|
- name: login server | Build `test` image
|
|
run: |
|
|
docker build --target login_server -t "gradido/login_server:test" -f ./login_server/Dockerfile login_server/
|
|
docker save "gradido/login_server:test" > /tmp/login_server.tar
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: docker-login-server-test
|
|
path: /tmp/login_server.tar
|
|
|
|
##############################################################################
|
|
# JOB: DOCKER BUILD TEST COMMUNITY SERVER ####################################
|
|
##############################################################################
|
|
build_test_community_server:
|
|
name: Docker Build Test - Community Server
|
|
runs-on: ubuntu-latest
|
|
#needs: [nothing]
|
|
steps:
|
|
##########################################################################
|
|
# CHECKOUT CODE ##########################################################
|
|
##########################################################################
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
##########################################################################
|
|
# BUILD COMMUNITY SERVER DOCKER IMAGE ####################################
|
|
##########################################################################
|
|
- name: community server | Build `test` image
|
|
run: |
|
|
docker build -t "gradido/community_server:test" -f ./community_server/Dockerfile ./
|
|
docker save "gradido/community_server:test" > /tmp/community_server.tar
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: docker-community-server-test
|
|
path: /tmp/community_server.tar
|
|
|
|
##############################################################################
|
|
# JOB: DOCKER BUILD TEST MARIADB #############################################
|
|
##############################################################################
|
|
build_test_mariadb:
|
|
name: Docker Build Test - MariaDB
|
|
runs-on: ubuntu-latest
|
|
#needs: [nothing]
|
|
steps:
|
|
##########################################################################
|
|
# CHECKOUT CODE ##########################################################
|
|
##########################################################################
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
##########################################################################
|
|
# BUILD MARIADB DOCKER IMAGE #############################################
|
|
##########################################################################
|
|
- name: mariadb | Build `test` image
|
|
run: |
|
|
docker build -t "gradido/mariadb:test" -f ./mariadb/Dockerfile ./
|
|
docker save "gradido/mariadb:test" > /tmp/mariadb.tar
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: docker-mariadb-test
|
|
path: /tmp/mariadb.tar
|
|
|
|
##############################################################################
|
|
# JOB: DOCKER BUILD TEST NGINX ###############################################
|
|
##############################################################################
|
|
build_test_nginx:
|
|
name: Docker Build Test - Nginx
|
|
runs-on: ubuntu-latest
|
|
#needs: [nothing]
|
|
steps:
|
|
##########################################################################
|
|
# CHECKOUT CODE ##########################################################
|
|
##########################################################################
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
##########################################################################
|
|
# BUILD NGINX DOCKER IMAGE #############################################
|
|
##########################################################################
|
|
- name: nginx | Build `test` image
|
|
run: |
|
|
docker build -t "gradido/nginx:test" -f ./nginx/Dockerfile ./
|
|
docker save "gradido/nginx:test" > /tmp/nginx.tar
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: docker-nginx-test
|
|
path: /tmp/nginx.tar
|
|
|
|
##############################################################################
|
|
# JOB: LINT FRONTEND #########################################################
|
|
##############################################################################
|
|
lint_frontend:
|
|
name: Lint - Frontend
|
|
runs-on: ubuntu-latest
|
|
needs: [build_test_frontend]
|
|
steps:
|
|
##########################################################################
|
|
# CHECKOUT CODE ##########################################################
|
|
##########################################################################
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
##########################################################################
|
|
# DOWNLOAD DOCKER IMAGE ##################################################
|
|
##########################################################################
|
|
- name: Download Docker Image (Frontend)
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: docker-frontend-test
|
|
path: /tmp
|
|
- name: Load Docker Image
|
|
run: docker load < /tmp/frontend.tar
|
|
##########################################################################
|
|
# LINT FRONTEND ###########################################################
|
|
##########################################################################
|
|
- name: frontend | Lint
|
|
run: docker run --rm gradido/frontend:test yarn run lint
|
|
|
|
##############################################################################
|
|
# JOB: UNIT TEST FRONTEND ###################################################
|
|
##############################################################################
|
|
unit_test_frontend:
|
|
name: Unit tests - Frontend
|
|
runs-on: ubuntu-latest
|
|
needs: [build_test_frontend]
|
|
steps:
|
|
##########################################################################
|
|
# CHECKOUT CODE ##########################################################
|
|
##########################################################################
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
##########################################################################
|
|
# DOWNLOAD DOCKER IMAGES #################################################
|
|
##########################################################################
|
|
- name: Download Docker Image (Frontend)
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: docker-frontend-test
|
|
path: /tmp
|
|
- name: Load Docker Image
|
|
run: docker load < /tmp/frontend.tar
|
|
##########################################################################
|
|
# UNIT TESTS FRONTEND ####################################################
|
|
##########################################################################
|
|
- name: frontend | Unit tests
|
|
run: |
|
|
docker run -v ~/coverage:/app/coverage --rm gradido/frontend:test yarn run test
|
|
cp -r ~/coverage ./coverage
|
|
##########################################################################
|
|
# COVERAGE REPORT FRONTEND ################################################
|
|
##########################################################################
|
|
#- name: frontend | Coverage report
|
|
# uses: romeovs/lcov-reporter-action@v0.2.21
|
|
# with:
|
|
# github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
# lcov-file: ./coverage/lcov.info
|
|
##########################################################################
|
|
# COVERAGE CHECK FRONTEND ################################################
|
|
##########################################################################
|
|
- name: frontend | Coverage check
|
|
uses: webcraftmedia/coverage-check-action@master
|
|
with:
|
|
report_name: Coverage Frontend
|
|
type: lcov
|
|
result_path: ./coverage/lcov.info
|
|
min_coverage: 19
|
|
token: ${{ github.token }}
|
|
|
|
##############################################################################
|
|
# JOB: UNIT TEST LOGIN-SERVER ###############################################
|
|
##############################################################################
|
|
unit_test_login_server:
|
|
name: Unit tests - Login-Server
|
|
runs-on: ubuntu-latest
|
|
needs: [build_test_login_server]
|
|
steps:
|
|
##########################################################################
|
|
# CHECKOUT CODE ##########################################################
|
|
##########################################################################
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
##########################################################################
|
|
# DOWNLOAD DOCKER IMAGE ##################################################
|
|
##########################################################################
|
|
- name: Download Docker Image (Login-Server)
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: docker-loginserver-test
|
|
path: /tmp
|
|
- name: Load Docker Image
|
|
run: docker load < /tmp/loginserver.tar
|
|
##########################################################################
|
|
# UNIT TESTS FRONTEND ####################################################
|
|
##########################################################################
|
|
- name: Login-Server | Unit tests
|
|
run: |
|
|
docker run -v ~/coverage:/app/coverage --rm gradido/frontend:test yarn run test
|
|
cp -r ~/coverage ./coverage
|
|
|
|
#test:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - uses: actions/checkout@v2
|
|
# - name: Build the stack
|
|
# run: |
|
|
# git submodule update --init --recursive
|
|
# docker-compose up -d
|
|
# - name: Test
|
|
# env:
|
|
# GN_INSTANCE_FOLDER: /tmp/gradio-node-instance
|
|
# GN_CONTAINER_NAME: gradido-node-build
|
|
# run: docker run gradido-node-test
|
|
# timeout-minutes: 2 |