Only use just during development

This makes the CI tasks more verbose, but makes the whole setup much easier to manage
This commit is contained in:
Jake Howard 2022-06-12 15:52:45 +01:00
parent e2d5101a56
commit c66acadd43
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 18 additions and 24 deletions

View file

@ -40,28 +40,14 @@ pip:
- ./env/
expire_in: 30 mins
just:
stage: build
before_script:
- apt-get update && apt-get install -y curl
script:
- curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to $CI_PROJECT_DIR/.just-bin
artifacts:
name: 'pip-$CI_JOB_ID'
paths:
- $CI_PROJECT_DIR/.just-bin
expire_in: 30 mins
.python_test_template: &python_test_template
stage: test
dependencies:
- pip
- collect_static
- static
- just
before_script:
- source env/bin/activate
- mv $CI_PROJECT_DIR/.just-bin/just /usr/local/bin/just
variables:
SECRET_KEY: super-secret
@ -71,11 +57,9 @@ collect_static:
dependencies:
- pip
- static
- just
needs:
- pip
- static
- just
script:
- ./manage.py collectstatic --noinput -v2 --clear
artifacts:
@ -97,7 +81,22 @@ django_checks:
- ./manage.py check
- ./manage.py makemigrations --check --noinput
python_lint:
black:
<<: *python_test_template
script:
- just lint
- black --check website
isort:
<<: *python_test_template
script:
- isort --check website
flake8:
<<: *python_test_template
script:
- flake8 website
mypy:
<<: *python_test_template
script:
- mypy website

View file

@ -11,9 +11,4 @@ This project handles commands using [`just`](https://github.com/casey/just).
### `.env` file
Local development secrets are stored in a `.env` file.
These values are required for the application to load
- `DEBUG` set to `false`
- `SECRET_KEY` set to [something](https://django-secret-key-generator.netlify.app/) semi-random
Local development secrets are stored in a `.env` file. This file is automatically loaded by `just`.