Skip to content

Commit

Permalink
Merge branch 'main' into seaborn-scatter
Browse files Browse the repository at this point in the history
  • Loading branch information
diegokam authored Jan 8, 2025
2 parents f0f727f + bd5c33e commit 343a533
Show file tree
Hide file tree
Showing 67 changed files with 1,938 additions and 1,368 deletions.
3 changes: 2 additions & 1 deletion .codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ engines:
exclude_paths: [
'doc/sphinx/**',
'esmvaltool/cmor/tables/**',
'tests/**'
'tests/**',
'esmvaltool/utils/recipe_test_workflow/app/configure/bin/test_configure.py'
]
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
esmvaltool/cmorizers @ESMValGroup/obs-maintainers
.github/workflows @valeriupredoi
esmvaltool/utils/recipe_test_workflow/ @alistairsellar @ehogan
78 changes: 78 additions & 0 deletions .github/workflows/check-rtw.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# This workflow performs various validation steps for Cylc and Rose.
name: Check Recipe Test Workflow (RTW)

# Controls when the action will run
on:
# Triggers the workflow on push events
push:
paths:
- esmvaltool/utils/recipe_test_workflow/**

# Schedule this workflow to run at 04:00 every 10 days
schedule:
- cron: '0 4 */10 * *'

# Common variables are defined here
env:
RTW_ROOT_DIR: esmvaltool/utils/recipe_test_workflow

# Required shell entrypoint to have properly configured bash shell
defaults:
run:
shell: bash -l {0}

# A workflow run is made up of one or more jobs that can run
# sequentially or in parallel
jobs:
# This workflow contains a single job called "check-rtw"
check-rtw:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part
# of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job
# can access it
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Cylc
uses: cylc/setup-cylc@v1
with:
cylc_rose: true

- name: Validate Cylc workflow
run: |
cd ${RTW_ROOT_DIR}
cylc validate . -O metoffice
- name: Run Cylc configuration linter
run: |
cd ${RTW_ROOT_DIR}
cylc lint
- name: Validate format of Rose configuration files
run: |
cd ${RTW_ROOT_DIR}
output="$(rose config-dump)"
msg="Run 'rose config-dump' to re-dump the Rose configuration files"
msg="${msg} in the common format, then commit the changes."
# The '-z' option returns true if 'output' is empty.
if [[ -z "${output}" ]]; then true; else echo "${msg}" && exit 1; fi
- name: Validate Rose configuration metadata
run: |
cd ${RTW_ROOT_DIR}
rose metadata-check -C meta/
- name: Run Rose configuration validation macros
run: |
cd ${RTW_ROOT_DIR}
rose macro -V
- name: Lint shell scripts
run: |
cd ${RTW_ROOT_DIR}
output=$(find . -name "*.sh" -exec shellcheck {} \;)
if [ "$output" ]; then echo "${output}" && exit 1; fi
50 changes: 50 additions & 0 deletions .github/workflows/cron_esmvalbot_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Run Esmvalbot Test

on:
# push:
# branches:
# - cron_esmvalbot_test
# scheduled once every 2 weeks
schedule:
- cron: '0 4 */14 * *'

# Required shell entrypoint to have properly configured bash shell
defaults:
run:
shell: bash -l {0}

jobs:
run-esmvalbot:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create empty commit on branch
run: |
git config user.name 'Valeriu Predoi'
git config user.email '[email protected]'
git commit --allow-empty -m "empty commit"
# Automated PR where we run "@esmvalbot please run examples/recipe_python.yml"
# as comment in the PR
# see https://github.com/marketplace/actions/create-pull-request
- name: Create Auto PR
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: empty message
# defaults are GH bot: # ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
committer: Valeriu Predoi <[email protected]>
author: Valeriu Predoi <[email protected]>
signoff: false
branch: run-esmvalbot
delete-branch: true
title: '[EsmvalbotTest] Periodic reminder to run an esmvalbot test'
body: 'Automatic PR; please DO NOT merge! This is for testing Esmvalbot only. @valeriupredoi @bouweandela @schlunma please run an ESMValBot test here; if the bot runs fine, please close the auto PR, if it has issues, please open a Github issue and tag @valeriupredoi. Many thanks :beers:'
labels: |
testing
esmvalbot
automatedPR
assignees: valeriupredoi
reviewers: valeriupredoi
draft: true
17 changes: 15 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,16 @@ build:
# DO NOT use mambaforge-*; that is currently sunsetted
python: "miniconda-latest"
jobs:
post_create_environment:
- conda run -n ${CONDA_DEFAULT_ENV} pip install . --no-deps
post_checkout:
# The ESMValTool repository is shallow i.e., has a .git/shallow,
# therefore complete the repository with a full history in order
# to allow setuptools-scm to correctly auto-discover the version.
- git fetch --unshallow
- git fetch --all
pre_install:
- git stash
post_install:
- git stash pop

# Declare the requirements required to build your docs
conda:
Expand All @@ -26,6 +34,11 @@ sphinx:
configuration: doc/sphinx/source/conf.py
fail_on_warning: true

python:
install:
- method: pip
path: .

# If using Sphinx, optionally build your docs in additional formats such as PDF
formats:
- pdf
32 changes: 26 additions & 6 deletions .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,17 @@
"name": "Berg, Peter",
"orcid": "0000-0002-1469-2568"
},
{
"affiliation": "Met Office, UK",
"name": "Billows, Chris"
},
{
"affiliation": "DLR, Germany",
"name": "Bock, Lisa",
"orcid": "0000-0001-7058-5938"
},
{
"affiliation": "MetOffice, UK",
"affiliation": "Met Office, UK",
"name": "Bodas-Salcedo, Alejandro",
"orcid": "0000-0002-7890-2536"
},
Expand Down Expand Up @@ -142,21 +146,29 @@
"name": "Docquier, David"
},
{
"affiliation": "MetOffice, UK",
"affiliation": "Met Office, UK",
"name": "Dreyer, Laura"
},
{
"affiliation": "DKRZ, Germany",
"name": "Ehbrecht, Carsten"
},
{
"affiliation": "MetOffice, UK",
"affiliation": "Met Office, UK",
"name": "Earnshaw, Paul"
},
{
"affiliation": "Met Office, UK",
"name": "Geddes, Theo"
},
{
"affiliation": "University of Bremen, Germany",
"name": "Gier, Bettina"
},
{
"affiliation": "Met Office, UK",
"name": "Gillett, Ed"
},
{
"affiliation": "BSC, Spain",
"name": "Gonzalez-Reviriego, Nube",
Expand Down Expand Up @@ -191,6 +203,10 @@
"name": "Heuer, Helge",
"orcid": "0000-0003-2411-7150"
},
{
"affiliation": "Met Office, UK",
"name": "Hogan, Emma"
},
{
"affiliation": "BSC, Spain",
"name": "Hunter, Alasdair",
Expand Down Expand Up @@ -227,7 +243,7 @@
"orcid": "0000-0001-6085-5914"
},
{
"affiliation": "MetOffice, UK",
"affiliation": "Met Office, UK",
"name": "Little, Bill"
},
{
Expand Down Expand Up @@ -279,7 +295,7 @@
"name": "Sandstad, Marit"
},
{
"affiliation": "MetOffice, UK",
"affiliation": "Met Office, UK",
"name": "Sellar, Alistair"
},
{
Expand All @@ -305,6 +321,10 @@
"name": "Swaminathan, Ranjini",
"orcid": "0000-0001-5853-2673"
},
{
"affiliation": "Met Office, UK",
"name": "Tomkins, Katherine"
},
{
"affiliation": "BSC, Spain",
"name": "Torralba, Verónica"
Expand Down Expand Up @@ -387,7 +407,7 @@
"orcid": "0000-0003-3780-0784"
},
{
"affiliation": "MetOffice, UK",
"affiliation": "Met Office, UK",
"name": "Munday, Gregory",
"orcid": "0000-0003-4750-9923"
}
Expand Down
34 changes: 27 additions & 7 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,17 @@ authors:
family-names: Berg
given-names: Peter
orcid: "https://orcid.org/0000-0002-1469-2568"
-
affiliation: "Met Office, UK"
family-names: Billows
given-names: Chris
-
affiliation: "DLR, Germany"
family-names: Bock
given-names: Lisa
orcid: "https://orcid.org/0000-0001-7058-5938"
-
affiliation: "MetOffice, UK"
affiliation: "Met Office, UK"
family-names: Bodas-Salcedo
given-names: Alejandro
orcid: "https://orcid.org/0000-0002-7890-2536"
Expand Down Expand Up @@ -146,21 +150,29 @@ authors:
family-names: Docquier
given-names: David
-
affiliation: "MetOffice, UK"
affiliation: "Met Office, UK"
family-names: Dreyer
given-names: Laura
-
affiliation: "DKRZ, Germany"
family-names: Ehbrecht
given-names: Carsten
-
affiliation: "MetOffice, UK"
affiliation: "Met Office, UK"
family-names: Earnshaw
given-names: Paul
-
affiliation: "Met Office, UK"
family-names: Geddes
given-names: Theo
-
affiliation: "University of Bremen, Germany"
family-names: Gier
given-names: Bettina
-
affiliation: "Met Office, UK"
family-names: Gillett
given-names: Ed
-
affiliation: "BSC, Spain"
family-names: Gonzalez-Reviriego
Expand Down Expand Up @@ -196,6 +208,10 @@ authors:
family-names: Heuer
given-names: Helge
orcid: "https://orcid.org/0000-0003-2411-7150"
-
affiliation: "Met Office, UK"
family-names: Hogan
given-names: Emma
-
affiliation: "BSC, Spain"
family-names: Hunter
Expand Down Expand Up @@ -232,7 +248,7 @@ authors:
given-names: Valerio
orcid: "https://orcid.org/0000-0001-6085-5914"
-
affiliation: "MetOffice, UK"
affiliation: "Met Office, UK"
family-names: Little
given-names: Bill
-
Expand Down Expand Up @@ -289,7 +305,7 @@ authors:
family-names: Sandstad
given-names: Marit
-
affiliation: "MetOffice, UK"
affiliation: "Met Office, UK"
family-names: Sellar
given-names: Alistair
-
Expand All @@ -315,6 +331,10 @@ authors:
family-names: Swaminathan
given-names: Ranjini
orcid: "https://orcid.org/0000-0001-5853-2673"
-
affiliation: "Met Office, UK"
family-names: Tomkins
given-names: Katherine
-
affiliation: "BSC, Spain"
family-names: Torralba
Expand Down Expand Up @@ -396,8 +416,8 @@ authors:
family-names: Bonnet
given-names: Pauline
orcid: "https://orcid.org/0000-0003-3780-0784"
-
affiliation: "MetOffice, UK"
-
affiliation: "Met Office, UK"
family-names: Munday
given-names: Gregory
orcid: "https://orcid.org/0000-0003-4750-9923"
Expand Down
14 changes: 14 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Security Policy

## Supported Versions

Only the [latest version][latest] of ESMValTool is currently being supported
with security updates.

## Reporting a Vulnerability

If you find a vulnerability, please contact the
[ESMValTool Tech Lead Team][TLT].

[latest]: https://github.com/ESMValGroup/ESMValTool/releases
[TLT]: mailto:[email protected]
Loading

0 comments on commit 343a533

Please sign in to comment.