2022-11-02 17:59:36 +01:00
|
|
|
name: Test and lint
|
2019-12-22 16:49:06 +01:00
|
|
|
|
2024-03-13 15:20:47 +01:00
|
|
|
on: [push, pull_request]
|
2019-12-22 16:49:06 +01:00
|
|
|
|
|
|
|
jobs:
|
2022-11-02 17:59:36 +01:00
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install poetry
|
|
|
|
run: pipx install poetry
|
|
|
|
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
2023-09-29 17:26:40 +02:00
|
|
|
python-version: '3.10'
|
2022-11-02 17:59:36 +01:00
|
|
|
cache: 'poetry'
|
|
|
|
|
2023-09-29 17:26:40 +02:00
|
|
|
- name: Install OS dependencies
|
|
|
|
if: ${{ matrix.python-version }} == '3.10'
|
|
|
|
run: |
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y libre2-dev libpq-dev
|
|
|
|
|
2022-11-02 17:59:36 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
|
|
|
|
run: poetry install --no-interaction
|
|
|
|
|
|
|
|
- name: Check formatting & linting
|
|
|
|
run: |
|
|
|
|
poetry run pre-commit run --all-files
|
|
|
|
|
|
|
|
|
2022-05-11 16:33:24 +02:00
|
|
|
test:
|
2019-12-22 16:49:06 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
2022-11-15 10:07:06 +01:00
|
|
|
python-version: ["3.10"]
|
2019-12-22 16:49:06 +01:00
|
|
|
|
2021-08-06 08:54:24 +02:00
|
|
|
# service containers to run with `postgres-job`
|
|
|
|
services:
|
|
|
|
# label used to access the service container
|
|
|
|
postgres:
|
|
|
|
# Docker Hub image
|
|
|
|
image: postgres:13
|
|
|
|
# service environment variables
|
|
|
|
# `POSTGRES_HOST` is `postgres`
|
|
|
|
env:
|
|
|
|
# optional (defaults to `postgres`)
|
|
|
|
POSTGRES_DB: test
|
|
|
|
# required
|
|
|
|
POSTGRES_PASSWORD: test
|
|
|
|
# optional (defaults to `5432`)
|
2021-08-15 21:49:56 +02:00
|
|
|
POSTGRES_PORT: 5432
|
2021-08-06 08:54:24 +02:00
|
|
|
# optional (defaults to `postgres`)
|
|
|
|
POSTGRES_USER: test
|
|
|
|
ports:
|
2021-08-15 21:49:56 +02:00
|
|
|
- 15432:5432
|
2021-08-06 08:54:24 +02:00
|
|
|
# set health checks to wait until postgres has started
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
|
2019-12-22 16:49:06 +01:00
|
|
|
steps:
|
2022-11-02 17:59:36 +01:00
|
|
|
- name: Check out repo
|
|
|
|
uses: actions/checkout@v3
|
2020-05-08 20:14:20 +02:00
|
|
|
|
2022-02-06 17:08:40 +01:00
|
|
|
- name: Install poetry
|
2022-11-02 17:59:36 +01:00
|
|
|
run: pipx install poetry
|
2022-02-06 17:08:40 +01:00
|
|
|
|
2022-11-02 17:59:36 +01:00
|
|
|
- uses: actions/setup-python@v4
|
2022-02-06 17:08:40 +01:00
|
|
|
with:
|
2022-11-02 17:59:36 +01:00
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
cache: 'poetry'
|
2020-05-08 20:15:57 +02:00
|
|
|
|
2022-04-28 15:22:23 +02:00
|
|
|
- name: Install OS dependencies
|
|
|
|
if: ${{ matrix.python-version }} == '3.10'
|
|
|
|
run: |
|
|
|
|
sudo apt update
|
2022-04-28 16:10:43 +02:00
|
|
|
sudo apt install -y libre2-dev libpq-dev
|
2022-04-28 15:22:23 +02:00
|
|
|
|
2020-05-08 20:14:20 +02:00
|
|
|
- name: Install dependencies
|
2022-02-06 17:08:40 +01:00
|
|
|
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
|
|
|
|
run: poetry install --no-interaction
|
2020-05-08 20:14:20 +02:00
|
|
|
|
2022-11-02 17:59:36 +01:00
|
|
|
|
|
|
|
- name: Start Redis v6
|
|
|
|
uses: superchargejs/redis-github-action@1.1.0
|
|
|
|
with:
|
|
|
|
redis-version: 6
|
2020-08-27 10:24:05 +02:00
|
|
|
|
2022-05-01 17:06:10 +02:00
|
|
|
- name: Run db migration
|
|
|
|
run: |
|
2022-05-01 17:22:05 +02:00
|
|
|
CONFIG=tests/test.env poetry run alembic upgrade head
|
2022-05-01 17:06:10 +02:00
|
|
|
|
2022-05-12 16:48:51 +02:00
|
|
|
- name: Prepare version file
|
|
|
|
run: |
|
2022-05-12 17:06:45 +02:00
|
|
|
scripts/generate-build-info.sh ${{ github.sha }}
|
2022-05-12 16:48:51 +02:00
|
|
|
cat app/build_info.py
|
|
|
|
|
2020-05-08 20:14:20 +02:00
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
2022-02-06 17:08:40 +01:00
|
|
|
poetry run pytest
|
2022-02-06 15:37:46 +01:00
|
|
|
env:
|
|
|
|
GITHUB_ACTIONS_TEST: true
|
2020-05-08 20:14:20 +02:00
|
|
|
|
2020-12-05 15:03:13 +01:00
|
|
|
- name: Archive code coverage results
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: code-coverage-report
|
|
|
|
path: htmlcov
|
|
|
|
|
2022-05-11 16:33:24 +02:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-02 17:59:36 +01:00
|
|
|
needs: ['test', 'lint']
|
2022-05-11 16:48:27 +02:00
|
|
|
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v'))
|
2022-05-11 16:33:24 +02:00
|
|
|
|
|
|
|
steps:
|
2022-05-12 08:54:44 +02:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v4
|
|
|
|
with:
|
|
|
|
images: simplelogin/app-ci
|
|
|
|
|
|
|
|
- name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v2
|
2020-05-08 20:14:20 +02:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2022-05-12 08:54:44 +02:00
|
|
|
|
2022-05-12 16:10:31 +02:00
|
|
|
# We need to checkout the repository in order for the "Create Sentry release" to work
|
|
|
|
- name: Checkout repository
|
2022-11-28 11:13:27 +01:00
|
|
|
uses: actions/checkout@v3
|
2022-11-24 10:37:04 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-05-12 16:10:31 +02:00
|
|
|
|
2024-03-13 15:20:47 +01:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
|
2022-11-28 12:40:06 +01:00
|
|
|
- name: Create Sentry release
|
|
|
|
uses: getsentry/action-release@v1
|
|
|
|
env:
|
|
|
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
|
|
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
|
|
|
|
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
|
|
|
with:
|
|
|
|
ignore_missing: true
|
|
|
|
ignore_empty: true
|
|
|
|
|
2022-05-12 16:10:31 +02:00
|
|
|
- name: Prepare version file
|
|
|
|
run: |
|
2022-05-12 17:06:45 +02:00
|
|
|
scripts/generate-build-info.sh ${{ github.sha }}
|
2022-05-12 16:48:51 +02:00
|
|
|
cat app/build_info.py
|
2022-05-12 16:10:31 +02:00
|
|
|
|
2022-05-12 08:54:44 +02:00
|
|
|
- name: Build image and publish to Docker Registry
|
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
2022-05-12 16:10:31 +02:00
|
|
|
context: .
|
2024-03-14 09:49:45 +01:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2022-05-12 08:54:44 +02:00
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
2020-05-08 20:14:20 +02:00
|
|
|
|
2020-11-26 10:04:51 +01:00
|
|
|
|
2022-07-11 10:27:05 +02:00
|
|
|
#- name: Send Telegram message
|
|
|
|
# uses: appleboy/telegram-action@master
|
|
|
|
# with:
|
|
|
|
# to: ${{ secrets.TELEGRAM_TO }}
|
|
|
|
# token: ${{ secrets.TELEGRAM_TOKEN }}
|
|
|
|
# args: Docker image pushed on ${{ github.ref }}
|
2022-05-12 08:54:44 +02:00
|
|
|
|
2022-05-12 10:51:57 +02:00
|
|
|
# If we have generated a tag, generate the changelog, send a notification to slack and create the GitHub release
|
|
|
|
- name: Build Changelog
|
|
|
|
id: build_changelog
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
|
|
uses: mikepenz/release-changelog-builder-action@v3
|
|
|
|
with:
|
|
|
|
configuration: ".github/changelog_configuration.json"
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-05-12 15:22:40 +02:00
|
|
|
- name: Prepare Slack notification contents
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
|
|
run: |
|
|
|
|
changelog=$(cat << EOH
|
|
|
|
${{ steps.build_changelog.outputs.changelog }}
|
|
|
|
EOH
|
|
|
|
)
|
|
|
|
messageWithoutNewlines=$(echo "${changelog}" | awk '{printf "%s\\n", $0}')
|
|
|
|
messageWithoutDoubleQuotes=$(echo "${messageWithoutNewlines}" | sed "s/\"/'/g")
|
|
|
|
echo "${messageWithoutDoubleQuotes}"
|
|
|
|
|
|
|
|
echo "SLACK_CHANGELOG=${messageWithoutDoubleQuotes}" >> $GITHUB_ENV
|
|
|
|
|
2022-05-12 08:54:44 +02:00
|
|
|
- name: Post notification to Slack
|
|
|
|
uses: slackapi/slack-github-action@v1.19.0
|
2022-05-12 10:51:57 +02:00
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
2022-05-12 08:54:44 +02:00
|
|
|
with:
|
|
|
|
channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
|
2022-05-12 10:51:57 +02:00
|
|
|
payload: |
|
|
|
|
{
|
|
|
|
"blocks": [
|
2022-05-12 15:22:40 +02:00
|
|
|
{
|
|
|
|
"type": "header",
|
|
|
|
"text": {
|
|
|
|
"type": "plain_text",
|
|
|
|
"text": "New tag created",
|
|
|
|
"emoji": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "section",
|
|
|
|
"text": {
|
|
|
|
"type": "mrkdwn",
|
2022-05-12 17:02:03 +02:00
|
|
|
"text": "*Tag: ${{ github.ref_name }}* (${{ github.sha }})"
|
2022-05-12 15:22:40 +02:00
|
|
|
}
|
|
|
|
},
|
2022-05-12 10:51:57 +02:00
|
|
|
{
|
|
|
|
"type": "section",
|
|
|
|
"text": {
|
|
|
|
"type": "mrkdwn",
|
2022-05-12 15:22:40 +02:00
|
|
|
"text": "*Changelog:*\n${{ env.SLACK_CHANGELOG }}"
|
2022-05-12 10:51:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2022-05-12 08:54:44 +02:00
|
|
|
env:
|
|
|
|
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
|
2022-05-12 10:51:57 +02:00
|
|
|
|
|
|
|
- name: Create GitHub Release
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
|
|
uses: actions/create-release@v1
|
|
|
|
with:
|
|
|
|
tag_name: ${{ github.ref }}
|
|
|
|
release_name: ${{ github.ref }}
|
|
|
|
body: ${{ steps.build_changelog.outputs.changelog }}
|
|
|
|
env:
|
2022-07-04 16:01:04 +02:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|