2019-12-30 09:25:35 +00:00
|
|
|
name: passbook | CI
|
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- release
|
|
|
|
env:
|
|
|
|
POSTGRES_DB: passbook
|
|
|
|
POSTGRES_USER: passbook
|
|
|
|
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Linting
|
|
|
|
pylint:
|
|
|
|
runs-on: [ubuntu-latest]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: '3.7'
|
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.local/share/virtualenvs/
|
|
|
|
key: ${{ runner.os }}-pipenv-${{ hashFiles('Pipfile.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pipenv-
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install -U pip pipenv && pipenv install --dev
|
|
|
|
- name: Lint with pylint
|
|
|
|
run: pipenv run pylint passbook
|
2019-12-31 11:51:16 +00:00
|
|
|
black:
|
2019-12-30 09:25:35 +00:00
|
|
|
runs-on: [ubuntu-latest]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: '3.7'
|
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.local/share/virtualenvs/
|
|
|
|
key: ${{ runner.os }}-pipenv-${{ hashFiles('Pipfile.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pipenv-
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install -U pip pipenv && pipenv install --dev
|
2019-12-31 11:51:16 +00:00
|
|
|
- name: Lint with black
|
|
|
|
run: pipenv run black --check passbook
|
2019-12-30 09:25:35 +00:00
|
|
|
prospector:
|
|
|
|
runs-on: [ubuntu-latest]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: '3.7'
|
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.local/share/virtualenvs/
|
|
|
|
key: ${{ runner.os }}-pipenv-${{ hashFiles('Pipfile.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pipenv-
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install -U pip pipenv && pipenv install --dev
|
|
|
|
- name: Lint with prospector
|
|
|
|
run: pipenv run prospector
|
|
|
|
# Actual CI tests
|
|
|
|
migrations:
|
|
|
|
needs:
|
|
|
|
- pylint
|
2019-12-31 11:52:15 +00:00
|
|
|
- black
|
2019-12-30 09:25:35 +00:00
|
|
|
- prospector
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:latest
|
|
|
|
env:
|
|
|
|
POSTGRES_DB: passbook
|
|
|
|
POSTGRES_USER: passbook
|
|
|
|
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
redis:
|
|
|
|
image: redis:latest
|
|
|
|
ports:
|
|
|
|
- 6379:6379
|
|
|
|
runs-on: [ubuntu-latest]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: '3.7'
|
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.local/share/virtualenvs/
|
|
|
|
key: ${{ runner.os }}-pipenv-${{ hashFiles('Pipfile.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pipenv-
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install -U pip pipenv && pipenv install --dev
|
|
|
|
- name: Run migrations
|
|
|
|
run: pipenv run ./manage.py migrate
|
|
|
|
coverage:
|
|
|
|
needs:
|
|
|
|
- pylint
|
2019-12-31 11:52:15 +00:00
|
|
|
- black
|
2019-12-30 09:25:35 +00:00
|
|
|
- prospector
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:latest
|
|
|
|
env:
|
|
|
|
POSTGRES_DB: passbook
|
|
|
|
POSTGRES_USER: passbook
|
|
|
|
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
redis:
|
|
|
|
image: redis:latest
|
|
|
|
ports:
|
|
|
|
- 6379:6379
|
|
|
|
runs-on: [ubuntu-latest]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: '3.7'
|
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.local/share/virtualenvs/
|
|
|
|
key: ${{ runner.os }}-pipenv-${{ hashFiles('Pipfile.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pipenv-
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install -U pip pipenv && pipenv install --dev
|
|
|
|
- name: Run coverage
|
|
|
|
run: pipenv run ./scripts/coverage.sh
|
|
|
|
# Build
|
|
|
|
build-server:
|
|
|
|
needs:
|
|
|
|
- migrations
|
|
|
|
- coverage
|
2019-12-31 13:01:58 +00:00
|
|
|
if: github.event.action == 'release'
|
2019-12-30 09:25:35 +00:00
|
|
|
runs-on: [ubuntu-latest]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Docker Login Registry
|
|
|
|
env:
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
|
|
|
|
- name: Building Docker Image
|
2019-12-31 13:02:01 +00:00
|
|
|
run: docker build --no-cache -t beryju/passbook:0.7.7-beta -f Dockerfile .
|
2019-12-30 09:25:35 +00:00
|
|
|
- name: Push Docker Container to Registry
|
2019-12-31 13:02:01 +00:00
|
|
|
run: docker push beryju/passbook:0.7.7-beta
|
2019-12-30 09:25:35 +00:00
|
|
|
build-static:
|
|
|
|
needs:
|
|
|
|
- migrations
|
|
|
|
- coverage
|
2019-12-31 13:01:58 +00:00
|
|
|
if: github.event.action == 'release'
|
2019-12-30 09:25:35 +00:00
|
|
|
runs-on: [ubuntu-latest]
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:latest
|
|
|
|
env:
|
|
|
|
POSTGRES_DB: passbook
|
|
|
|
POSTGRES_USER: passbook
|
|
|
|
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
|
|
|
|
redis:
|
|
|
|
image: redis:latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Docker Login Registry
|
|
|
|
env:
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
|
|
|
|
- name: Building Docker Image
|
|
|
|
run: docker build
|
|
|
|
--no-cache
|
|
|
|
--network=$(docker network ls | grep github | awk '{print $1}')
|
2019-12-31 13:02:01 +00:00
|
|
|
-t beryju/passbook-static:0.7.7-beta
|
2019-12-30 09:25:35 +00:00
|
|
|
-f static.Dockerfile .
|
|
|
|
- name: Push Docker Container to Registry
|
2019-12-31 13:02:01 +00:00
|
|
|
run: docker push beryju/passbook-static:0.7.7-beta
|
2019-12-30 09:25:35 +00:00
|
|
|
package-helm:
|
|
|
|
needs:
|
|
|
|
- build-server
|
|
|
|
- build-static
|
2019-12-31 13:01:58 +00:00
|
|
|
if: github.event.action == 'release'
|
2019-12-30 09:25:35 +00:00
|
|
|
runs-on: [ubuntu-latest]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install Helm
|
|
|
|
run: |
|
|
|
|
apt update && apt install -y curl
|
|
|
|
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
|
|
|
|
helm init
|
|
|
|
- name: Helm package
|
|
|
|
run: |
|
2019-12-30 09:42:46 +00:00
|
|
|
helm dependency update helm/
|
|
|
|
helm package helm/
|