Skip to content

Calibration coefficients update - summer 2024.csv #73

Calibration coefficients update - summer 2024.csv

Calibration coefficients update - summer 2024.csv #73

name: CI/CD environment-a22-non-linear-calibration
on:
push:
paths:
- "environment-a22-non-linear-calibration/**"
- ".github/workflows/ci-environment-a22-non-linear-calibration.yml"
- "!*.md"
env:
WORKING_DIRECTORY: environment-a22-non-linear-calibration
PROJECT_NAME: odh-mobility-el-environment-a22-non-linear-calibration
DOCKER_IMAGE: ghcr.io/${{ github.repository }}/odh-mobility-el-environment-a22-non-linear-calibration
DOCKER_TAG: ${{ github.sha }}
jobs:
test:
runs-on: ubuntu-20.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/pip-test@v2
with:
python-version: '3.11'
working-directory: ${{ env.WORKING_DIRECTORY }}
test-command: python -m unittest discover test -t src -p Test*.py
# Deploy Test
deploy-test-environment-a22-non-linear-calibration:
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/main'
needs: test
concurrency: deploy-test-environment-a22-non-linear-calibration
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Create .env file
uses: noi-techpark/github-actions/env-file@v2
with:
working-directory: ${{ env.WORKING_DIRECTORY }}
env:
# General deployment options
X_COMPOSE_PROJECT_NAME: ${{ env.PROJECT_NAME }}
X_DOCKER_IMAGE: ${{ env.DOCKER_IMAGE }}
X_DOCKER_TAG: ${{ env.DOCKER_TAG }}
# Program specific env variables
X_AUTHENTICATION_SERVER: https://auth.opendatahub.testingmachine.eu/auth/
X_CLIENT_SECRET: ${{ secrets.COMBINED_CLIENT_SECRET_TEST }}
X_ODH_MOBILITY_API_NINJA: https://mobility.api.opendatahub.testingmachine.eu/v2
X_ODH_MOBILITY_API_WRITER: https://share.opendatahub.testingmachine.eu
X_PROVENANCE_LINEAGE: NOI
X_PROVENANCE_NAME: ${{ env.PROJECT_NAME }}
X_PROVENANCE_VERSION: ${{ github.sha }}
# run job every n seconds
X_JOB_SCHEDULE_SEC: 3600
X_LOG_LEVEL: INFO
- name: Build and push images
uses: noi-techpark/github-actions/docker-build-and-push@v2
with:
working-directory: ${{ env.WORKING_DIRECTORY }}/infrastructure
docker-username: ${{ github.actor }}
docker-password: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy application
uses: noi-techpark/github-actions/docker-deploy@v2
with:
working-directory: ${{ env.WORKING_DIRECTORY }}/infrastructure/ansible
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-environment-a22-non-linear-calibration:
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/prod'
needs: test
concurrency: deploy-prod-environment-a22-non-linear-calibration
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Create .env file
uses: noi-techpark/github-actions/env-file@v2
with:
working-directory: ${{ env.WORKING_DIRECTORY }}
env:
# General deployment options
X_COMPOSE_PROJECT_NAME: ${{ env.PROJECT_NAME }}
X_DOCKER_IMAGE: ${{ env.DOCKER_IMAGE }}
X_DOCKER_TAG: ${{ env.DOCKER_TAG }}
# Program specific env variables
X_AUTHENTICATION_SERVER: https://auth.opendatahub.com/auth/
X_CLIENT_SECRET: ${{ secrets.COMBINED_CLIENT_SECRET_PROD }}
X_ODH_MOBILITY_API_NINJA: https://mobility.api.opendatahub.com/v2
X_ODH_MOBILITY_API_WRITER: https://mobility.share.opendatahub.com
X_PROVENANCE_LINEAGE: NOI
X_PROVENANCE_NAME: ${{ env.PROJECT_NAME }}
X_PROVENANCE_VERSION: ${{ github.sha }}
# run job every n seconds
X_JOB_SCHEDULE_SEC: 3600
X_LOG_LEVEL: INFO
- name: Build and push images
uses: noi-techpark/github-actions/docker-build-and-push@v2
with:
working-directory: ${{ env.WORKING_DIRECTORY }}/infrastructure
docker-username: ${{ github.actor }}
docker-password: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy application
uses: noi-techpark/github-actions/docker-deploy@v2
with:
working-directory: ${{ env.WORKING_DIRECTORY }}/infrastructure/ansible
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 }}