2022-11-23 11:41:43 +03:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
# Enable Buildkit and let compose use it to speed up image building
|
|
|
|
env:
|
|
|
|
DOCKER_BUILDKIT: 1
|
|
|
|
COMPOSE_DOCKER_CLI_BUILD: 1
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [ "master", "main" ]
|
|
|
|
paths-ignore: [ "docs/**" ]
|
|
|
|
|
|
|
|
push:
|
|
|
|
branches: [ "master", "main" ]
|
|
|
|
paths-ignore: [ "docs/**" ]
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linter:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2022-12-21 00:50:36 +03:00
|
|
|
steps:
|
2022-11-23 11:41:43 +03:00
|
|
|
- name: Checkout Code Repository
|
2024-10-14 21:46:14 +03:00
|
|
|
uses: actions/checkout@v4.2.1
|
2022-11-23 11:41:43 +03:00
|
|
|
|
2023-03-27 17:57:48 +03:00
|
|
|
- name: Cache packages
|
2024-10-14 21:46:14 +03:00
|
|
|
uses: actions/cache@v4.1.1
|
2023-03-27 17:57:48 +03:00
|
|
|
id: cache-packages
|
|
|
|
with:
|
|
|
|
path: "~/packages/"
|
2023-03-27 18:14:55 +03:00
|
|
|
key: ${{ runner.os }}-packages
|
2023-03-27 17:57:48 +03:00
|
|
|
|
|
|
|
- name: Install packages
|
|
|
|
env:
|
|
|
|
CACHE_HIT: ${{steps.cache-valgrind.outputs.cache-hit}}
|
|
|
|
run: |
|
|
|
|
if [[ "$CACHE_HIT" == 'true' ]]; then
|
|
|
|
sudo cp --verbose --force --recursive ~/packages/* /
|
|
|
|
else
|
|
|
|
sudo apt-get install --yes libimage-exiftool-perl libmagickwand-dev
|
|
|
|
mkdir -p ~/packages/
|
|
|
|
sudo dpkg -L libimage-exiftool-perl libmagickwand-dev | while IFS= read -r f; do if test -f $f; then echo $f; fi; done | xargs cp --parents --target-directory ~/packages/
|
|
|
|
fi
|
|
|
|
|
2024-10-14 21:46:14 +03:00
|
|
|
- uses: actions/checkout@v4.2.1
|
2023-01-01 23:44:42 +03:00
|
|
|
- name: Install poetry
|
|
|
|
run: pipx install poetry
|
|
|
|
|
2024-10-14 21:46:14 +03:00
|
|
|
- uses: actions/setup-python@v5.2.0
|
2022-11-23 11:41:43 +03:00
|
|
|
with:
|
2023-01-01 23:44:42 +03:00
|
|
|
python-version: '3.11'
|
|
|
|
cache: 'poetry'
|
|
|
|
- run: poetry install
|
2022-11-23 11:41:43 +03:00
|
|
|
|
|
|
|
- name: Run pre-commit
|
2024-10-14 21:46:14 +03:00
|
|
|
uses: pre-commit/action@v3.0.1
|
2022-11-23 11:41:43 +03:00
|
|
|
|
|
|
|
# With no caching at all the entire ci process takes 4m 30s to complete!
|
|
|
|
pytest:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code Repository
|
2024-10-14 21:46:14 +03:00
|
|
|
uses: actions/checkout@v4.2.1
|
|
|
|
|
|
|
|
- name: Install Docker Compose
|
|
|
|
run: sudo apt-get update && sudo apt-get install -y docker-compose
|
2022-11-23 11:41:43 +03:00
|
|
|
|
|
|
|
- name: Build the Stack
|
|
|
|
run: docker-compose -f local.yml build
|
|
|
|
|
|
|
|
- name: Run Django Tests
|
|
|
|
run: docker-compose -f local.yml run django pytest
|
|
|
|
|
|
|
|
- name: Tear down the Stack
|
|
|
|
run: docker-compose -f local.yml down
|