-
Notifications
You must be signed in to change notification settings - Fork 0
93 lines (79 loc) · 2.61 KB
/
status.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
# This workflow determines the number of profiles and index list of Argo profiles in BC regions, every hour
name: BC-status
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 */6 * * *'
push:
branches: [ master ]
workflow_dispatch: # allows you to trigger the workflow run manually
jobs:
check-and-report:
runs-on: ubuntu-latest
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'
# env:
# GIT_TRACE: 1
# GIT_CURL_VERBOSE: 1
- uses: actions/checkout@v4
- name: Save update time
run: date +%s > data/last_update.txt
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install argopy
run: |
python -m pip install --upgrade pip
pwd
ls -l
pip install git+https://github.com/euroargodev/argopy.git@master
pip install regionmask
python -c "import argopy; argopy.show_versions()"
- name: Check Argo status in BCs
run: |
python cli/check_save_status.py
ls -l data
- name: Save BC status
uses: EndBug/[email protected]
with:
author_name: argobot-hub
author_email: [email protected]
message: "Update status files"
add: "data/*.json --force"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Save BC index
uses: EndBug/[email protected]
with:
author_name: argobot-hub
author_email: [email protected]
message: 'Update index file'
add: "data/*.txt --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 census'
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