2021-02-09 20:35:33 +01:00
|
|
|
name: On pull request
|
|
|
|
|
|
|
|
on: pull_request
|
|
|
|
|
2022-04-16 15:43:26 +02:00
|
|
|
env:
|
|
|
|
DEFAULT_PYTHON: 3.9
|
|
|
|
|
2021-02-09 20:35:33 +01:00
|
|
|
jobs:
|
2022-11-20 14:34:12 +01:00
|
|
|
build_devcontainer:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Build Devcontainer
|
|
|
|
# The Dockerfile contains features that requires buildkit, and since the
|
|
|
|
# devcontainer cli uses docker-compose to build the image, the only way to
|
|
|
|
# ensure docker-compose uses buildkit is to explicitly enable it.
|
|
|
|
env:
|
|
|
|
DOCKER_BUILDKIT: "1"
|
|
|
|
steps:
|
2023-09-06 15:02:16 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-11-20 14:34:12 +01:00
|
|
|
- uses: actions/setup-node@master
|
|
|
|
with:
|
|
|
|
node-version: 16.x
|
|
|
|
- name: Install devcontainer cli
|
|
|
|
run: npm install --global @devcontainers/cli
|
|
|
|
- name: Build devcontainer
|
|
|
|
run: devcontainer build --workspace-folder .
|
|
|
|
# It would be nice to also test the following commands, but for some
|
|
|
|
# reason they don't work even though in VS Code devcontainer works.
|
|
|
|
# - name: Start devcontainer
|
|
|
|
# run: devcontainer up --workspace-folder .
|
|
|
|
# - name: Run devcontainer scripts
|
|
|
|
# run: devcontainer run-user-commands --workspace-folder .
|
|
|
|
|
2021-02-09 20:35:33 +01:00
|
|
|
web_lint:
|
|
|
|
name: Web - Lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-06 15:02:16 +02:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-09 20:35:33 +01:00
|
|
|
- uses: actions/setup-node@master
|
|
|
|
with:
|
2022-03-11 12:52:41 +01:00
|
|
|
node-version: 16.x
|
2021-02-09 20:35:33 +01:00
|
|
|
- run: npm install
|
|
|
|
working-directory: ./web
|
2024-05-18 18:36:13 +02:00
|
|
|
- name: Lint
|
|
|
|
run: npm run lint
|
|
|
|
working-directory: ./web
|
2021-02-09 20:35:33 +01:00
|
|
|
|
2021-02-09 20:35:33 +01:00
|
|
|
web_test:
|
|
|
|
name: Web - Test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-06 15:02:16 +02:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-09 20:35:33 +01:00
|
|
|
- uses: actions/setup-node@master
|
|
|
|
with:
|
2023-12-16 17:20:59 +01:00
|
|
|
node-version: 20.x
|
2021-02-09 20:35:33 +01:00
|
|
|
- run: npm install
|
|
|
|
working-directory: ./web
|
2023-12-16 17:20:59 +01:00
|
|
|
# - name: Test
|
|
|
|
# run: npm run test
|
|
|
|
# working-directory: ./web
|
2022-03-06 05:16:31 +01:00
|
|
|
|
2022-04-16 15:43:26 +02:00
|
|
|
python_checks:
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-20 14:34:12 +01:00
|
|
|
name: Python Checks
|
2022-04-16 15:43:26 +02:00
|
|
|
steps:
|
|
|
|
- name: Check out the repository
|
2023-09-06 15:02:16 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-04-16 15:43:26 +02:00
|
|
|
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
|
2024-04-07 14:13:26 +02:00
|
|
|
uses: actions/setup-python@v5.1.0
|
2022-04-16 15:43:26 +02:00
|
|
|
with:
|
|
|
|
python-version: ${{ env.DEFAULT_PYTHON }}
|
|
|
|
- name: Install requirements
|
|
|
|
run: |
|
2023-05-29 12:31:17 +02:00
|
|
|
python3 -m pip install -U pip
|
2023-07-23 23:45:29 +02:00
|
|
|
python3 -m pip install -r docker/main/requirements-dev.txt
|
2023-11-18 15:04:43 +01:00
|
|
|
- name: Check formatting
|
2023-05-29 12:31:17 +02:00
|
|
|
run: |
|
2023-11-18 15:04:43 +01:00
|
|
|
ruff format --check --diff frigate migrations docker *.py
|
|
|
|
- name: Check lint
|
2022-04-16 15:43:26 +02:00
|
|
|
run: |
|
2023-05-29 12:31:17 +02:00
|
|
|
ruff check frigate migrations docker *.py
|
2022-04-16 15:43:26 +02:00
|
|
|
|
2022-03-11 05:41:21 +01:00
|
|
|
python_tests:
|
2022-01-14 14:31:25 +01:00
|
|
|
runs-on: ubuntu-latest
|
2022-06-30 14:53:46 +02:00
|
|
|
name: Python Tests
|
2022-01-14 14:31:25 +01:00
|
|
|
steps:
|
|
|
|
- name: Check out code
|
2023-09-06 15:02:16 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-04-24 20:52:12 +02:00
|
|
|
- uses: actions/setup-node@master
|
|
|
|
with:
|
|
|
|
node-version: 16.x
|
|
|
|
- run: npm install
|
|
|
|
working-directory: ./web
|
|
|
|
- name: Build web
|
|
|
|
run: npm run build
|
|
|
|
working-directory: ./web
|
2022-01-14 14:31:25 +01:00
|
|
|
- name: Set up QEMU
|
2023-09-24 14:00:41 +02:00
|
|
|
uses: docker/setup-qemu-action@v3
|
2022-01-14 14:31:25 +01:00
|
|
|
- name: Set up Docker Buildx
|
2023-09-24 14:00:41 +02:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2022-03-11 05:41:21 +01:00
|
|
|
- name: Build
|
|
|
|
run: make
|
2022-04-12 15:30:55 +02:00
|
|
|
- name: Run mypy
|
|
|
|
run: docker run --rm --entrypoint=python3 frigate:latest -u -m mypy --config-file frigate/mypy.ini frigate
|
2022-03-11 05:41:21 +01:00
|
|
|
- name: Run tests
|
2022-04-16 15:43:26 +02:00
|
|
|
run: docker run --rm --entrypoint=python3 frigate:latest -u -m unittest
|