Skip to content

Feature/tc local helm #101

Feature/tc local helm

Feature/tc local helm #101

Workflow file for this run

name: Run test
on:
workflow_call:
inputs:
push_docker_image:
type: string # true or false
default: "false"
outputs:
docker_image_name:
description: "Only docker image name"
value: ${{ jobs.test.outputs.docker_image_name }}
docker_image_tag:
description: "Only docker image tag"
value: ${{ jobs.test.outputs.docker_image_tag }}
docker_image:
description: "docker image with tag"
value: ${{ jobs.test.outputs.docker_image }}
pull_request:
# NOTE: For other, they should be run through helm github action ./helm-publish.yml
env:
DJANGO_SECRET_KEY: "ci-test-insecure-django-secret-key"
COMPOSE_FILE: docker-compose.yml:gh-docker-compose.yml
jobs:
test:
name: ๐Ÿšด Test ๐Ÿšด
runs-on: ubuntu-latest
outputs:
docker_image_name: ${{ steps.prep.outputs.tagged_image_name }}
docker_image_tag: ${{ steps.prep.outputs.tag }}
docker_image: ${{ steps.prep.outputs.tagged_image }}
steps:
- uses: actions/checkout@main
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
if: ${{ inputs.push_docker_image }}
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: ๐Ÿณ Prepare Docker
id: prep
env:
IMAGE_NAME: ghcr.io/${{ github.repository }}
PUSH_DOCKER_IMAGE: ${{ inputs.push_docker_image }}
run: |
# NOTE: Here we let project/ with the image to create a new package.
# NOTE: We can easily delete them for clean-up as they are only used for alpha instances
BRANCH_NAME=$(echo $GITHUB_REF_NAME | sed 's|:|-|' | tr '[:upper:]' '[:lower:]' | sed 's/_/-/g' | cut -c1-100 | sed 's/-*$//')
TAG="$BRANCH_NAME.$(echo $GITHUB_SHA | head -c7)"
echo "tagged_image_name=${IMAGE_NAME}" >> $GITHUB_OUTPUT
echo "tag=${TAG}" >> $GITHUB_OUTPUT
echo "tagged_image=${IMAGE_NAME}:${TAG}" >> $GITHUB_OUTPUT
echo "push_docker_image=$PUSH_DOCKER_IMAGE" >> $GITHUB_OUTPUT
echo "::notice::Tagged docker image: ${IMAGE_NAME}:${TAG}"
- name: ๐Ÿณ Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: ๐Ÿณ Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.ref }}
restore-keys: |
${{ runner.os }}-buildx-refs/develop
${{ runner.os }}-buildx-
- name: ๐Ÿณ Build image
uses: docker/build-push-action@v6
with:
context: .
builder: ${{ steps.buildx.outputs.name }}
file: Dockerfile
push: ${{ steps.prep.outputs.push_docker_image == 'true' }}
load: true
tags: ${{ steps.prep.outputs.tagged_image }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: ๐Ÿ•ฎ Validate if there are no pending django migrations.
env:
DOCKER_IMAGE_BACKEND: ${{ steps.prep.outputs.tagged_image }}
run: |
docker compose run --rm web bash -c 'wait-for-it db:5432 && ./manage.py makemigrations --check --dry-run' || {
echo 'There are some changes to be reflected in the migration. Make sure to run makemigrations';
exit 1;
}
- name: ๐Ÿณ Move docker cache (๐Ÿง™ Hack fix)
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
validate_helm:
name: ๐Ÿšด Validate Helm ๐Ÿšด
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Install Helm
uses: azure/setup-helm@v4
- name: ๐Ÿณ Helm lint
run: helm lint ./helm --values ./helm/values-test.yaml
- name: ๐Ÿณ Helm template
run: helm template ./helm --values ./helm/values-test.yaml