2022-11-18 13:58:26 +00:00
|
|
|
name: Web Tests/Analysis
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
2022-12-04 14:31:57 +00:00
|
|
|
push:
|
2023-11-03 11:28:53 +00:00
|
|
|
paths:
|
|
|
|
- 'python/web/**'
|
|
|
|
- 'python/common/**'
|
|
|
|
- '.github/workflows/web.yml'
|
|
|
|
- 'easyinstall.sh'
|
2023-09-02 23:36:45 +00:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'python/web/**'
|
|
|
|
- 'python/common/**'
|
|
|
|
- '.github/workflows/web.yml'
|
|
|
|
- 'easyinstall.sh'
|
2024-01-18 04:38:55 +00:00
|
|
|
types:
|
|
|
|
- opened
|
|
|
|
- synchronize
|
2023-11-03 12:18:23 +00:00
|
|
|
branches:
|
|
|
|
- 'develop'
|
|
|
|
- 'main'
|
2022-11-18 13:58:26 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
backend_checks:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
2022-12-04 14:31:57 +00:00
|
|
|
working-directory: python
|
2022-11-18 13:58:26 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
2024-03-22 07:19:13 +00:00
|
|
|
python-version: 3.9.19
|
2022-11-18 13:58:26 +00:00
|
|
|
cache: 'pip'
|
|
|
|
|
2022-12-04 14:31:57 +00:00
|
|
|
- run: pip install -r web/requirements-dev.txt
|
2022-11-18 13:58:26 +00:00
|
|
|
id: pip
|
|
|
|
|
2022-12-04 14:31:57 +00:00
|
|
|
- run: black --check .
|
2022-11-18 13:58:26 +00:00
|
|
|
|
2022-12-04 14:31:57 +00:00
|
|
|
- run: flake8 .
|
2022-11-18 13:58:26 +00:00
|
|
|
if: success() || failure() && steps.pip.outcome == 'success'
|
|
|
|
|
2022-12-04 14:31:57 +00:00
|
|
|
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
|
|
|
|
|
2022-11-18 13:58:26 +00:00
|
|
|
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
|
2023-07-29 05:53:12 +00:00
|
|
|
run: |
|
|
|
|
npx stylelint src/static/themes/modern/style.css
|
|
|
|
npx stylelint src/static/themes/classic/style.css
|
2022-11-18 13:58:26 +00:00
|
|
|
|
|
|
|
- name: Prettier
|
2023-07-29 05:53:12 +00:00
|
|
|
run: |
|
|
|
|
npx prettier --check src/static/themes/modern/style.css
|
|
|
|
npx prettier --check src/static/themes/classic/style.css
|
2022-11-18 13:58:26 +00:00
|
|
|
if: success() || failure() && steps.npm.outcome == 'success'
|