mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
b9fd263899
* Simplified dockerfile - Changed from alpine to python:slim - Removed some database libs (because we *connect* to a db, not host it) * - Add gettext as required package - Only create inventree user as part of production build (leave admin access for dev build) * Tweaks for tasks.py * Fix user permissions (drop to inventree user) * Drop to the 'inventree' user level as part of init.sh - As we have mounted volumes at 'run time' we need to ensure that the inventree user has correct permissions! - Ref: https://stackoverflow.com/questions/39397548/how-to-give-non-root-user-in-docker-container-access-to-a-volume-mounted-on-the * Adjust user setup - Only drop to non-root user as part of "production" build - Mounted external volumes make it tricky when in the dev build - Might want to revisit this later on * More dockerfile changes - reduce required system packages - * Add new docker github workflow * Print some more debug * GITHUB_BASE_REF * Add gnupg to base requirements * Improve debug output during testing * Refactoring updates for label printing API - Update weasyprint version to 55.0 - Generate labels as pdf files - Provide filename to label printing plugin - Additional unit testing - Improve extraction of some hidden debug data during TESTING - Fix a spelling mistake (notifaction -> notification) * Working on github action * More testing * Add requirement for pdf2image * Fix label printing plugin and update unit testing * Add required packages for CI * Move docker files to the top level directory - This allows us to build the production image directly from soure - Don't need to re-download the source code from github - Note: The docker install guide will need to be updated! * Fix for docker ci file * Print GIT SHA * Bake git information into the production image * Add some exta docstrings to dockerfile * Simplify version check script * Extract git commit info * Extract docker tag from check_version.py * Newline * More work on the docker workflow * Dockerfile fixes - Directory / path issues * Dockerfile fixes - Directory / path issues * Ignore certain steps on a pull request * Add poppler-utils to CI * Consolidate version check into existing CI file * Don't run docker workflow on pull request * Pass docker image tag through to the build Also check .j2k files * Add supervisord.conf example file back in * Remove --no-cache-dir option from pip install
252 lines
6.4 KiB
YAML
252 lines
6.4 KiB
YAML
# Checks for each PR / push
|
|
|
|
name: QC checks
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- l10*
|
|
|
|
pull_request:
|
|
branches-ignore:
|
|
- l10*
|
|
|
|
env:
|
|
python_version: 3.9
|
|
node_version: 16
|
|
# The OS version must be set per job
|
|
|
|
server_start_sleep: 60
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
INVENTREE_DB_ENGINE: sqlite3
|
|
INVENTREE_DB_NAME: inventree
|
|
INVENTREE_MEDIA_ROOT: ../test_inventree_media
|
|
INVENTREE_STATIC_ROOT: ../test_inventree_static
|
|
|
|
jobs:
|
|
pep_style:
|
|
name: Style [Python]
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Enviroment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
install: true
|
|
- name: Run flake8
|
|
run: flake8 InvenTree --extend-ignore=D
|
|
|
|
javascript:
|
|
name: Style [JS]
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: pep_style
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Enviroment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
npm: true
|
|
install: true
|
|
- name: Check Templated JS Files
|
|
run: |
|
|
cd ci
|
|
python3 check_js_templates.py
|
|
- name: Lint Javascript Files
|
|
run: |
|
|
invoke render-js-files
|
|
npx eslint js_tmp/*.js
|
|
|
|
html:
|
|
name: Style [HTML]
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: pep_style
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Enviroment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
npm: true
|
|
install: true
|
|
- name: Check HTML Files
|
|
run: npx markuplint **/templates/*.html
|
|
|
|
pre-commit:
|
|
name: Style [pre-commit]
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: pep_style
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python ${{ env.python_version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ env.python_version }}
|
|
cache: 'pip'
|
|
- name: Run pre-commit Checks
|
|
uses: pre-commit/action@v2.0.3
|
|
- name: Check version number
|
|
run: |
|
|
python3 ci/check_version_number.py
|
|
|
|
python:
|
|
name: Tests - inventree-python
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: pre-commit
|
|
|
|
env:
|
|
wrapper_name: inventree-python
|
|
INVENTREE_DB_ENGINE: django.db.backends.sqlite3
|
|
INVENTREE_DB_NAME: ../inventree_unit_test_db.sqlite3
|
|
INVENTREE_ADMIN_USER: testuser
|
|
INVENTREE_ADMIN_PASSWORD: testpassword
|
|
INVENTREE_ADMIN_EMAIL: test@test.com
|
|
INVENTREE_PYTHON_TEST_SERVER: http://localhost:12345
|
|
INVENTREE_PYTHON_TEST_USERNAME: testuser
|
|
INVENTREE_PYTHON_TEST_PASSWORD: testpassword
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Enviroment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
apt-dependency: gettext poppler-utils
|
|
update: true
|
|
- name: Download Python Code For `${{ env.wrapper_name }}`
|
|
run: git clone --depth 1 https://github.com/inventree/${{ env.wrapper_name }} ./${{ env.wrapper_name }}
|
|
- name: Start InvenTree Server
|
|
run: |
|
|
invoke delete-data -f
|
|
invoke import-fixtures
|
|
invoke server -a 127.0.0.1:12345 &
|
|
invoke wait
|
|
- name: Run Tests For `${{ env.wrapper_name }}`
|
|
run: |
|
|
cd ${{ env.wrapper_name }}
|
|
invoke check-server
|
|
coverage run -m unittest discover -s test/
|
|
|
|
coverage:
|
|
name: Tests - DB [SQLite] + Coverage
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: ['javascript', 'html', 'pre-commit']
|
|
continue-on-error: true # continue if a step fails so that coverage gets pushed
|
|
|
|
env:
|
|
INVENTREE_DB_NAME: ./inventree.sqlite
|
|
INVENTREE_DB_ENGINE: sqlite3
|
|
INVENTREE_PLUGINS_ENABLED: true
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Enviroment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
apt-dependency: gettext poppler-utils
|
|
update: true
|
|
- name: Coverage Tests
|
|
run: invoke coverage
|
|
- name: Data Export Test
|
|
uses: ./.github/actions/migration
|
|
- name: Test Translations
|
|
run: invoke translate
|
|
- name: Check Migration Files
|
|
run: python3 ci/check_migration_files.py
|
|
- name: Upload Coverage Report
|
|
run: coveralls
|
|
|
|
postgres:
|
|
name: Tests - DB [PostgreSQL]
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: ['javascript', 'html', 'pre-commit']
|
|
if: github.event_name == 'push'
|
|
|
|
env:
|
|
INVENTREE_DB_ENGINE: django.db.backends.postgresql
|
|
INVENTREE_DB_USER: inventree
|
|
INVENTREE_DB_PASSWORD: password
|
|
INVENTREE_DB_HOST: '127.0.0.1'
|
|
INVENTREE_DB_PORT: 5432
|
|
INVENTREE_DEBUG: info
|
|
INVENTREE_CACHE_HOST: localhost
|
|
INVENTREE_PLUGINS_ENABLED: true
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres
|
|
env:
|
|
POSTGRES_USER: inventree
|
|
POSTGRES_PASSWORD: password
|
|
ports:
|
|
- 5432:5432
|
|
|
|
redis:
|
|
image: redis
|
|
ports:
|
|
- 6379:6379
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Enviroment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
apt-dependency: gettext poppler-utils libpq-dev
|
|
pip-dependency: psycopg2 django-redis>=5.0.0
|
|
update: true
|
|
- name: Run Tests
|
|
run: invoke test
|
|
- name: Data Export Test
|
|
uses: ./.github/actions/migration
|
|
|
|
mysql:
|
|
name: Tests - DB [MySQL]
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: ['javascript', 'html', 'pre-commit']
|
|
if: github.event_name == 'push'
|
|
|
|
env:
|
|
# Database backend configuration
|
|
INVENTREE_DB_ENGINE: django.db.backends.mysql
|
|
INVENTREE_DB_USER: root
|
|
INVENTREE_DB_PASSWORD: password
|
|
INVENTREE_DB_HOST: '127.0.0.1'
|
|
INVENTREE_DB_PORT: 3306
|
|
INVENTREE_DEBUG: info
|
|
INVENTREE_PLUGINS_ENABLED: true
|
|
|
|
services:
|
|
mysql:
|
|
image: mysql:latest
|
|
env:
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
|
MYSQL_DATABASE: ${{ env.INVENTREE_DB_NAME }}
|
|
MYSQL_USER: inventree
|
|
MYSQL_PASSWORD: password
|
|
MYSQL_ROOT_PASSWORD: password
|
|
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
|
|
ports:
|
|
- 3306:3306
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Enviroment Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
apt-dependency: gettext poppler-utils libmysqlclient-dev
|
|
pip-dependency: mysqlclient
|
|
update: true
|
|
- name: Run Tests
|
|
run: invoke test
|
|
- name: Data Export Test
|
|
uses: ./.github/actions/migration
|