2020-11-09 21:46:19 +03:00
|
|
|
name: CI
|
|
|
|
|
2020-11-09 22:38:16 +03:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
2020-11-09 21:46:19 +03:00
|
|
|
|
|
|
|
jobs:
|
2020-11-09 22:01:29 +03:00
|
|
|
tox:
|
2020-11-09 21:46:19 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-11-09 22:01:29 +03:00
|
|
|
tox-env:
|
2021-01-26 18:13:27 +03:00
|
|
|
- py39
|
2020-11-09 22:01:29 +03:00
|
|
|
- black-template
|
2020-11-09 21:46:19 +03:00
|
|
|
|
2021-11-11 22:12:23 +03:00
|
|
|
name: "tox env ${{ matrix.tox-env }}"
|
2020-11-09 21:46:19 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-11-04 17:55:32 +03:00
|
|
|
- uses: actions/setup-python@v2
|
2020-11-09 21:46:19 +03:00
|
|
|
with:
|
2021-01-26 18:13:27 +03:00
|
|
|
python-version: 3.9
|
2020-11-09 21:46:19 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install -U pip
|
|
|
|
python -m pip install -U tox
|
2020-11-09 22:01:29 +03:00
|
|
|
- name: Tox ${{ matrix.tox-env }}
|
|
|
|
run: tox -e ${{ matrix.tox-env }}
|
|
|
|
|
|
|
|
docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
script:
|
|
|
|
- name: Basic
|
|
|
|
args: ""
|
|
|
|
- name: Extended
|
|
|
|
args: "use_celery=y use_drf=y js_task_runner=Gulp"
|
|
|
|
|
2021-11-11 22:12:23 +03:00
|
|
|
name: "${{ matrix.script.name }} Docker"
|
2020-11-09 22:18:38 +03:00
|
|
|
env:
|
|
|
|
DOCKER_BUILDKIT: 1
|
|
|
|
COMPOSE_DOCKER_CLI_BUILD: 1
|
|
|
|
|
2020-11-09 22:01:29 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-11-04 17:55:32 +03:00
|
|
|
- uses: actions/setup-python@v2
|
2020-11-09 22:01:29 +03:00
|
|
|
with:
|
2021-01-26 18:13:27 +03:00
|
|
|
python-version: 3.9
|
2020-11-09 22:01:29 +03:00
|
|
|
- name: Docker ${{ matrix.script.name }}
|
|
|
|
run: sh tests/test_docker.sh ${{ matrix.script.args }}
|
|
|
|
|
|
|
|
bare:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
script:
|
|
|
|
- name: With Celery
|
|
|
|
args: "use_celery=y use_compressor=y"
|
2021-11-16 23:29:43 +03:00
|
|
|
- name: With Gulp
|
|
|
|
args: "js_task_runner=Gulp custom_bootstrap_compilation=y"
|
2020-11-09 22:01:29 +03:00
|
|
|
|
2021-11-11 22:12:23 +03:00
|
|
|
name: "${{ matrix.script.name }} Bare metal"
|
2020-11-09 22:01:29 +03:00
|
|
|
services:
|
|
|
|
redis:
|
2020-11-09 22:06:49 +03:00
|
|
|
image: redis:5.0
|
2020-11-09 22:01:29 +03:00
|
|
|
ports:
|
|
|
|
- 6379:6379
|
|
|
|
postgres:
|
2020-11-09 22:06:49 +03:00
|
|
|
image: postgres:12
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
2020-11-09 22:23:48 +03:00
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
2020-11-09 22:01:29 +03:00
|
|
|
|
|
|
|
env:
|
|
|
|
CELERY_BROKER_URL: "redis://localhost:6379/0"
|
2020-11-09 22:23:48 +03:00
|
|
|
# postgres://user:password@host:port/database
|
2020-11-09 22:28:09 +03:00
|
|
|
DATABASE_URL: "postgres://postgres:postgres@localhost:5432/postgres"
|
2020-11-09 22:01:29 +03:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-11-04 17:55:32 +03:00
|
|
|
- uses: actions/setup-python@v2
|
2020-11-09 22:01:29 +03:00
|
|
|
with:
|
2021-11-16 23:29:43 +03:00
|
|
|
python-version: "3.9"
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: "16"
|
2020-11-09 22:01:29 +03:00
|
|
|
- name: Bare Metal ${{ matrix.script.name }}
|
|
|
|
run: sh tests/test_bare.sh ${{ matrix.script.args }}
|