-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (71 loc) · 2.49 KB
/
nrt_classif.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
# This workflow aims to produce Near Real Time classification of profiles in BCs
name: NRT-classif
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '30 */6 * * *'
workflow_dispatch: # allows you to trigger the workflow run manually
jobs:
classify-and-report:
runs-on: ubuntu-latest
environment: COPERNICUS_MARINE_SERVICE
defaults:
run:
shell: bash -l {0}
steps:
- name: Energy Estimation - Initialize
uses: green-coding-berlin/eco-ci-energy-estimation@v3
with:
task: start-measurement
company-uuid: ${{ secrets.CARBONDB_COMPANY_UUID }}
project-uuid: ${{ secrets.CARBONDB_PROJECT_UUID }}
continue-on-error: true
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: 'main'
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.5.10-0'
environment-name: bc-monitor
environment-file: environment39-free.yml
cache-environment: true
- name: Login to Copernicus Marine Service
env:
USERNAME: ${{secrets.COPERNICUS_MARINE_SERVICE_USERNAME}}
PASSWORD: ${{secrets.COPERNICUS_MARINE_SERVICE_PASSWORD}}
run: |
copernicusmarine login --username $USERNAME --password $PASSWORD --overwrite-configuration-file --log-level INFO
- name: Classify and report
run: |
python cli/load_classif_save.py
ls -l data
- name: Save report
uses: EndBug/[email protected]
with:
author_name: argobot-hub
author_email: [email protected]
message: 'Update PCM analysis results'
add: "data/* --force"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Energy Estimation - Get Measurement
uses: green-coding-berlin/eco-ci-energy-estimation@v3
with:
task: get-measurement
label: 'BCmonitor PCM classif'
company-uuid: ${{ secrets.CARBONDB_COMPANY_UUID }}
project-uuid: ${{ secrets.CARBONDB_PROJECT_UUID }}
continue-on-error: true
- name: Energy Estimation - Show Results
uses: green-coding-berlin/eco-ci-energy-estimation@v3
with:
task: display-results
company-uuid: ${{ secrets.CARBONDB_COMPANY_UUID }}
project-uuid: ${{ secrets.CARBONDB_PROJECT_UUID }}
continue-on-error: true