-
Notifications
You must be signed in to change notification settings - Fork 4
128 lines (114 loc) · 4.69 KB
/
ci-parking-free-slot-calculation.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
name: CI/CD parking-free-slot-calculation
on:
push:
paths:
- "parking-free-slot-calculation/**"
- ".github/workflows/ci-parking-free-slot-calculation.yml"
- "!*.md"
env:
WORKING_DIRECTORY: parking-free-slot-calculation
PROJECT_NAME: odh-mobility-el-parking-free-slot-calculation
DOCKER_IMAGE: ghcr.io/${{ github.repository }}/odh-mobility-el-parking-free-slot-calculation
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:
working-directory: ${{ env.WORKING_DIRECTORY }}
test-command: |
echo "WARNING: NO TESTS FOUND!"
# Deploy Test
deploy-test-parking-free-slot-calculation:
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/main'
needs: test
concurrency: deploy-test-parking-free-slot-calculation
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.CLIENT_SECRET_TEST }}
X_CLIENT_ID: odh-mobility-datacollector
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: 300
- 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-parking-free-slot-calculation:
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/prod'
needs: test
concurrency: deploy-prod-parking-free-slot-calculation
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.CLIENT_SECRET_PROD }}
X_CLIENT_ID: odh-mobility-datacollector
X_ODH_MOBILITY_API_NINJA: https://mobility.api.opendatahub.com/v2
X_ODH_MOBILITY_API_WRITER: https://mobility.share.opendatahub.bz.it
X_PROVENANCE_LINEAGE: NOI
X_PROVENANCE_NAME: ${{ env.PROJECT_NAME }}
X_PROVENANCE_VERSION: ${{ github.sha }}
# run job every n seconds
X_JOB_SCHEDULE_SEC: 300
- 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 }}