Merge pull request #282 from noi-techpark/swagger_yaml #274
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 | |
on: | |
push: | |
paths-ignore: | |
- 'client/**' | |
- '.github/workflows/sdk.yml' | |
- '*.md' | |
pull_request: | |
paths-ignore: | |
- 'client/**' | |
- '.github/workflows/sdk.yml' | |
- '*.md' | |
env: | |
PROJECT_NAME: odh-mobility-writer | |
DOCKER_IMAGE: ghcr.io/${{ github.repository }}/${{ github.event.repository.name }}-app | |
DOCKER_TAG: ${{ github.sha }} | |
JAVA_VERSION: '17' | |
jobs: | |
# Test | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
- name: REUSE Compliance Check | |
uses: fsfe/reuse-action@v1 | |
- name: Test code | |
uses: noi-techpark/github-actions/maven-test@v2 | |
with: | |
java-version: ${{ env.JAVA_VERSION }} | |
test-command: 'mvn -B test' | |
# Deploy Test | |
deploy-test: | |
runs-on: ubuntu-20.04 | |
if: github.ref == 'refs/heads/main' | |
needs: test | |
concurrency: deploy-test | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
- name: Create .env file | |
uses: noi-techpark/github-actions/env-file@v2 | |
env: | |
X_COMPOSE_PROJECT_NAME: ${{ env.PROJECT_NAME }} | |
X_DOCKER_IMAGE: ${{ env.DOCKER_IMAGE }} | |
X_DOCKER_TAG: ${{ env.DOCKER_TAG }} | |
X_SERVER_PORT: 1010 | |
# Database Configuration | |
X_POSTGRES_SERVER: "test-pg-bdp.co90ybcr8iim.eu-west-1.rds.amazonaws.com" | |
X_POSTGRES_DB: "bdp" | |
X_POSTGRES_PORT: "5432" | |
X_POSTGRES_SCHEMA: "intimev2" | |
X_POSTGRES_USERNAME: "bdp" | |
X_POSTGRES_PASSWORD: ${{ secrets.TEST_POSTGRES_PASSWORD }} | |
X_HIBERNATE_MAX_POOL_SIZE: "15" | |
# Security | |
X_SECURITY_ALLOWED_ORIGINS: "*" | |
X_KEYCLOAK_URL: "https://auth.opendatahub.testingmachine.eu/auth" | |
X_KEYCLOAK_SSL_REQUIRED: "none" | |
X_KEYCLOAK_REALM: "noi" | |
X_KEYCLOAK_CLIENT_ID: "odh-mobility-writer" | |
# Logging | |
X_LOG_APPLICATION_NAME: "writer" | |
X_LOG_APPLICATION_VERSION: ${{ github.sha }} | |
X_LOG_STYLE: "json" | |
X_LOG_LEVEL: "info" | |
X_ROOT_LOG_LEVEL : "info" | |
X_HIBERNATE_LOG_LEVEL: "warn" | |
X_HIBERNATE_SQL_LOG: "false" | |
- name: Build project | |
uses: noi-techpark/github-actions/maven-build@v2 | |
with: | |
java-version: ${{ env.JAVA_VERSION }} | |
build-command: 'mvn -B -DskipTests -DfinalName=bdp --projects writer --also-make clean package' | |
- name: Build and push images | |
uses: noi-techpark/github-actions/docker-build-and-push@v2 | |
with: | |
docker-username: ${{ github.actor }} | |
docker-password: ${{ secrets.GITHUB_TOKEN }} | |
# https://github.com/shrink/actions-docker-registry-tag | |
- name: Add a "unstable" docker tag | |
uses: shrink/actions-docker-registry-tag@v2 | |
with: | |
registry: ghcr.io | |
repository: ${{ github.repository }}/${{ github.event.repository.name }}-app | |
target: ${{ env.DOCKER_TAG }} | |
tags: | | |
unstable | |
- name: Deploy application | |
uses: noi-techpark/github-actions/docker-deploy@v2 | |
with: | |
hosts: 'test' | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
docker-username: 'noi-techpark-bot' | |
docker-password: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
project-name: ${{ env.PROJECT_NAME }} | |
# Deploy Prod | |
deploy-prod: | |
runs-on: ubuntu-20.04 | |
if: github.ref == 'refs/heads/prod' | |
needs: test | |
concurrency: deploy-prod | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
- name: Create .env file | |
uses: noi-techpark/github-actions/env-file@v2 | |
env: | |
X_COMPOSE_PROJECT_NAME: ${{ env.PROJECT_NAME }} | |
X_DOCKER_IMAGE: ${{ env.DOCKER_IMAGE }} | |
X_DOCKER_TAG: ${{ env.DOCKER_TAG }} | |
X_SERVER_PORT: 1010 | |
# Database Configuration | |
X_POSTGRES_SERVER: "prod-pg-bdp.co90ybcr8iim.eu-west-1.rds.amazonaws.com" | |
X_POSTGRES_DB: "bdp" | |
X_POSTGRES_PORT: "5432" | |
X_POSTGRES_SCHEMA: "intimev2" | |
X_POSTGRES_USERNAME: "bdp" | |
X_POSTGRES_PASSWORD: ${{ secrets.PROD_POSTGRES_PASSWORD }} | |
X_HIBERNATE_MAX_POOL_SIZE: "15" | |
# Security | |
X_SECURITY_ALLOWED_ORIGINS: "*" | |
X_KEYCLOAK_URL: "https://auth.opendatahub.com/auth" | |
X_KEYCLOAK_SSL_REQUIRED: "none" | |
X_KEYCLOAK_REALM: "noi" | |
X_KEYCLOAK_CLIENT_ID: "odh-mobility-writer" | |
# Logging | |
X_LOG_APPLICATION_NAME: "writer" | |
X_LOG_APPLICATION_VERSION: ${{ github.sha }} | |
X_LOG_STYLE: "json" | |
X_LOG_LEVEL: "info" | |
X_ROOT_LOG_LEVEL : "info" | |
X_HIBERNATE_LOG_LEVEL: "warn" | |
X_HIBERNATE_SQL_LOG: "false" | |
- name: Build project | |
uses: noi-techpark/github-actions/maven-build@v2 | |
with: | |
java-version: ${{ env.JAVA_VERSION }} | |
build-command: 'mvn -B -DskipTests -DfinalName=bdp --projects writer --also-make clean package' | |
- name: Build and push images | |
uses: noi-techpark/github-actions/docker-build-and-push@v2 | |
with: | |
docker-username: ${{ github.actor }} | |
docker-password: ${{ secrets.GITHUB_TOKEN }} | |
# https://github.com/shrink/actions-docker-registry-tag | |
- name: Add a "latest" docker tag | |
uses: shrink/actions-docker-registry-tag@v2 | |
with: | |
registry: ghcr.io | |
repository: ${{ github.repository }}/${{ github.event.repository.name }}-app | |
target: ${{ env.DOCKER_TAG }} | |
tags: | | |
latest | |
- name: Deploy application | |
uses: noi-techpark/github-actions/docker-deploy@v2 | |
with: | |
hosts: 'prod' | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
docker-username: 'noi-techpark-bot' | |
docker-password: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
project-name: ${{ env.PROJECT_NAME }} |