Merge pull request #115 from forza-mor-rotterdam/develop #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI/CD Workflow" | |
on: | |
push: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
django-lint: | |
name: Django linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3.1.2 | |
with: | |
python-version: 3.10.10 | |
- name: Linting | |
run: bash bin/cleanup_pre_commit.sh | |
docker-build-and-test: | |
name: Create Docker image and test | |
runs-on: ubuntu-latest | |
needs: django-lint | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build Docker test image | |
run: docker compose -f docker-compose.test.yaml build | |
- name: Create Docker network | |
run: docker network create mbc_network | |
- name: Start Docker Containers | |
run: docker compose -f docker-compose.test.yaml up -d | |
- name: Run Tests | |
run: docker compose -f docker-compose.test.yaml run app python manage.py test | |
deploy-acc: | |
name: Acceptance release | |
if: github.ref == 'refs/heads/develop' | |
needs: docker-build-and-test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to the Container registry | |
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta_app | |
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-app-develop | |
- name: Build and push app Docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: "{{defaultContext}}:app" | |
push: true | |
tags: ${{ steps.meta_app.outputs.tags }} | |
labels: ${{ steps.meta_app.outputs.labels }} | |
build-args: | | |
GIT_SHA=${{ github.sha }} | |
- name: Start rollout on k8s platform | |
uses: actions-hub/kubectl@master | |
env: | |
KUBE_HOST: ${{ secrets.KUBE_HOST }} | |
KUBE_CERTIFICATE: ${{ secrets.KUBE_CERTIFICATE }} | |
KUBE_TOKEN: ${{ secrets.KUBE_TOKEN }} | |
with: | |
args: rollout restart deployment/app --namespace=mbc-acc | |
- name: Status rollout on k8s platform | |
uses: actions-hub/kubectl@master | |
env: | |
KUBE_HOST: ${{ secrets.KUBE_HOST }} | |
KUBE_CERTIFICATE: ${{ secrets.KUBE_CERTIFICATE }} | |
KUBE_TOKEN: ${{ secrets.KUBE_TOKEN }} | |
with: | |
args: rollout status deployment/app --namespace=mbc-acc |