mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
52e4a92aec
* Bump black from 22.8.0 to 24.3.0 in /python/web Bumps [black](https://github.com/psf/black) from 22.8.0 to 24.3.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/22.8.0...24.3.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> * Github CI: Backend web test runner use python 3.9.19 * Reformat python sources with black * Docker: Bump to python 3.9-slim image for pytest * Bump pytest version to 8.1.1 * Bump more library versions, and freeze them --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Daniel Markstedt <daniel@mindani.net>
147 lines
4.2 KiB
YAML
147 lines
4.2 KiB
YAML
name: Web Tests/Analysis
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- 'python/web/**'
|
|
- 'python/common/**'
|
|
- '.github/workflows/web.yml'
|
|
- 'easyinstall.sh'
|
|
pull_request:
|
|
paths:
|
|
- 'python/web/**'
|
|
- 'python/common/**'
|
|
- '.github/workflows/web.yml'
|
|
- 'easyinstall.sh'
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
branches:
|
|
- 'develop'
|
|
- 'main'
|
|
|
|
jobs:
|
|
backend_checks:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: python
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.9.19
|
|
cache: 'pip'
|
|
|
|
- run: pip install -r web/requirements-dev.txt
|
|
id: pip
|
|
|
|
- run: black --check .
|
|
|
|
- run: flake8 .
|
|
if: success() || failure() && steps.pip.outcome == 'success'
|
|
|
|
backend_tests:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: docker
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Check DockerHub for existing backend image
|
|
run: |
|
|
export DOCKER_BACKEND_IMAGE="piscsi/backend-standalone:`git ls-files -s python .github/workflows/web.yml | git hash-object --stdin`"
|
|
echo "DOCKER_BACKEND_IMAGE=${DOCKER_BACKEND_IMAGE}" >> $GITHUB_ENV
|
|
docker pull --quiet ${DOCKER_BACKEND_IMAGE} || echo "DOCKER_BACKEND_NEEDS_PUSH=1" >> $GITHUB_ENV
|
|
|
|
- name: Build and launch containers
|
|
run: docker compose -f docker-compose.ci.yml up -d
|
|
|
|
- name: Run test suite
|
|
run: docker compose -f docker-compose.ci.yml run pytest -v
|
|
|
|
- name: Check if DockerHub secrets defined
|
|
run: if [[ $DOCKERHUB_USERNAME && $DOCKERHUB_TOKEN ]]; then echo "DOCKERHUB_SECRETS_DEFINED=1" >> $GITHUB_ENV; fi
|
|
env:
|
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
if: env.DOCKERHUB_SECRETS_DEFINED && env.DOCKER_BACKEND_NEEDS_PUSH
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Push backend image to DockerHub
|
|
if: (success() || failure()) && env.DOCKERHUB_SECRETS_DEFINED && env.DOCKER_BACKEND_NEEDS_PUSH
|
|
run: docker compose -f docker-compose.ci.yml push backend
|
|
|
|
- name: Upload test artifacts
|
|
if: success() || failure()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: pytest-output.zip
|
|
path: |
|
|
docker/volumes/pytest/report.xml
|
|
docker/volumes/pytest/pytest.log
|
|
|
|
- name: Output container logs
|
|
if: success() || failure()
|
|
run: |
|
|
docker compose -f docker-compose.ci.yml logs backend > backend.log
|
|
docker compose -f docker-compose.ci.yml logs web > web.log
|
|
docker compose -f docker-compose.ci.yml logs -t | sort -u -k 3 > combined.log
|
|
|
|
- name: Upload backend log
|
|
if: success() || failure()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: backend.log
|
|
path: docker/backend.log
|
|
|
|
- name: Upload web log
|
|
if: success() || failure()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: web.log
|
|
path: docker/web.log
|
|
|
|
- name: Upload combined log
|
|
if: success() || failure()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: combined.log
|
|
path: docker/combined.log
|
|
|
|
frontend_checks:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: python/web
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
cache: 'npm'
|
|
cache-dependency-path: python/web/package-lock.json
|
|
|
|
- run: npm ci
|
|
id: npm
|
|
|
|
- name: Stylelint
|
|
run: |
|
|
npx stylelint src/static/themes/modern/style.css
|
|
npx stylelint src/static/themes/classic/style.css
|
|
|
|
- name: Prettier
|
|
run: |
|
|
npx prettier --check src/static/themes/modern/style.css
|
|
npx prettier --check src/static/themes/classic/style.css
|
|
if: success() || failure() && steps.npm.outcome == 'success'
|